EndsWith

EndsWith( value, search )
EndsWith( value, search )
EndsWith( value, search )
EndsWith( value, search )
ends_with( value, search )
Not available in this language yet.
EndsWith( value, search )
Not available in this language yet.

Description

The EndsWith function returns true when the value string ends with the search string, or false when it does not.

Parameters

Argument Type Definition and Requirements

value

The string to compare.

search

The string to search for at the end of value.

Returns

Returns a boolean: true when value ends with search, or false when it does not.

Examples

The following query demonstrates the case where the value string ends with the search string:

Value result = await client.Query(
  EndsWith("Fauna", "a")
);

IResult<Value> data = result.To<Value>();
data.Match(
  Success: value => Console.WriteLine($"{value}"),
  Failure: error => Console.WriteLine($"Query failed:\n{error}")
);
result, err := client.Query(
  f.EndsWith("Fauna", "a"))

if (err != nil) {
  fmt.Println(err)
} else {
  fmt.Println(result)
}
System.out.println(
    client.query(
        EndsWith("Fauna", "a")
    ).get()
);
client.query(
  q.EndsWith('Fauna', 'a')
)
.then((ret) => console.log(ret))
print(client.query(
  q.ends_with("Fauna", "a")
))
Not available in this language yet.
println(Await.result(
  client.query(
    EndsWith("Fauna", "a"),
  ),
  5.seconds
))
Not available in this language yet.
BooleanV(True)
true
true
true
True
true

The following query demonstrates the case where the value string does not end with the search string:

Value result = await client.Query(
  EndsWith("Fauna", "A")
);

IResult<Value> data = result.To<Value>();
data.Match(
  Success: value => Console.WriteLine($"{value}"),
  Failure: error => Console.WriteLine($"Query failed:\n{error}")
);
result, err := client.Query(
  f.EndsWith("Fauna", "A"))

if (err != nil) {
  fmt.Println(err)
} else {
  fmt.Println(result)
}
System.out.println(
    client.query(
        EndsWith("Fauna", "A")
    ).get()
);
client.query(
  q.EndsWith('Fauna', 'A')
)
.then((ret) => console.log(ret))
print(client.query(
  q.ends_with("Fauna", "A")
))
Not available in this language yet.
println(Await.result(
  client.query(
    EndsWith("Fauna", "A"),
  ),
  5.seconds
))
Not available in this language yet.
BooleanV(False)
false
false
false
False
false

Was this article helpful?

We're sorry to hear that.
Tell us how we can improve! documentation@fauna.com

Thank you for your feedback!