uce/site/doc/pages/contains.txt
2026-06-16 12:21:31 +00:00

20 lines
378 B
Plaintext

:sig
bool contains(String haystack, String needle)
:params
haystack : string to search in
needle : substring to look for
return value : `true` when `needle` appears in `haystack`, otherwise `false`
:see
>string
:content
Returns whether `haystack` contains `needle`.
An empty `needle` always returns `true`.
:example
print(contains("uce docs", "docs") ? "yes\n" : "no\n");