# `Ash.Query.Function.StringStartsWith`
[🔗](https://github.com/ash-project/ash/blob/v3.26.0/lib/ash/query/function/string_starts_with.ex#L5)

Returns true if the first string starts with the second.

Case insensitive strings are accounted for on either side.

   string_starts_with("foo", "fo")
   true

   string_starts_with(%Ash.CiString{string: "foo"}, "FoO")
   false

   string_starts_with(%Ash.CiString{string: "foo"}, "Fo")
   true

# `args`

# `has_partial_evaluate?`

---

*Consult [api-reference.md](api-reference.md) for complete listing*
