EndsWith
EndsWith( value, search )
EndsWith( value, search )
EndsWith( value, search )
EndsWith( value, search )
ends_with( value, search )
EndsWith( value, search )
Description
The EndsWith
function returns true
when the value
string ends
with the search
string, 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}")
);
BooleanV(True)
result, err := client.Query(
f.EndsWith("Fauna", "a"))
if (err != nil) {
fmt.Println(err)
} else {
fmt.Println(result)
}
true
System.out.println(
client.query(
EndsWith("Fauna", "a")
).get()
);
true
client.query(
q.EndsWith('Fauna', 'a')
)
.then((ret) => console.log(ret))
true
print(client.query(
q.ends_with("Fauna", "a")
))
True
println(Await.result(
client.query(
EndsWith("Fauna", "a"),
),
5.seconds
))
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}")
);
BooleanV(False)
result, err := client.Query(
f.EndsWith("Fauna", "A"))
if (err != nil) {
fmt.Println(err)
} else {
fmt.Println(result)
}
false
System.out.println(
client.query(
EndsWith("Fauna", "A")
).get()
);
false
client.query(
q.EndsWith('Fauna', 'A')
)
.then((ret) => console.log(ret))
false
print(client.query(
q.ends_with("Fauna", "A")
))
False
println(Await.result(
client.query(
EndsWith("Fauna", "A"),
),
5.seconds
))
false
Is this article helpful?
Tell Fauna how the article can be improved:
Visit Fauna's forums
or email docs@fauna.com
Thank you for your feedback!