StartsWith
StartsWith( value, search )
StartsWith( value, search )
StartsWith( value, search )
StartsWith( value, search )
starts_with( value, search )
Not available in this language yet.
StartsWith( value, search )
Not available in this language yet.
Description
The StartsWith
function returns true
when the value
string starts
with the search
string, or false
when it does not.
Examples
The following query demonstrates the case where the value
string
starts with the search
string:
Value result = await client.Query(
StartsWith("Fauna", "F")
);
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.StartsWith("Fauna", "F"))
if (err != nil) {
fmt.Println(err)
} else {
fmt.Println(result)
}
System.out.println(
client.query(
StartsWith("Fauna", "F")
).get()
);
client.query(
q.StartsWith('Fauna', 'F')
)
.then((ret) => console.log(ret))
print(client.query(
q.starts_with("Fauna", "F")
))
Not available in this language yet.
println(Await.result(
client.query(
StartsWith("Fauna", "F"),
),
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 start with the search
string:
Value result = await client.Query(
StartsWith("Fauna", "f")
);
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.StartsWith("Fauna", "f"))
if (err != nil) {
fmt.Println(err)
} else {
fmt.Println(result)
}
System.out.println(
client.query(
StartsWith("Fauna", "f")
).get()
);
client.query(
q.StartsWith('Fauna', 'f')
)
.then((ret) => console.log(ret))
print(client.query(
q.starts_with("Fauna", "f")
))
Not available in this language yet.
println(Await.result(
client.query(
StartsWith("Fauna", "f"),
),
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!