stringcontains

Return true if a string contains a specified substring.


Synopsis

doesContain = stringcontains(string_to_search, string_to_find)


Description

stringcontains returns true if the substring is contained within the provided string. The compare is case-sensitive.


Arguments


Examples

contains = stringcontains("the haystack", "needle")  // will return false
contains = stringcontains("the haystack", "hay")  // will return true

See Also

stringtofloat