View Source Ash.Query.Function.StringSplit (ash v3.4.3)
Split a string into a list of strings
Splits a string on the given delimiter. The delimiter defaults to a single space. Also supports options.
Keep in mind, this function does not support regexes the way that String.split/3
does, only raw strings.
string_split(employee_code)
string_split(full_name, "foo")
string_split(full_name, "foo", trim?: true)
Options
:trim?
(boolean/0
) - Whether or not to trim empty strings from the beginning or end of the result. Equivalent to thetrim
option toString.split/3
The default value isfalse
.
Summary
Functions
Callback implementation for Ash.Query.Function.args/0
.
Functions
Callback implementation for Ash.Query.Function.args/0
.