StringTools
Has
determine if a string contains a given character
Calling Sequence
Parameters
Description
Examples
Has( s, ch )
s
-
string; string to test
ch
character; character to test against
The Has( s, ch ) command determines whether the string s contains the character ch. It returns the value true if s contains ch, and false otherwise.
The string ch must not be the empty string. Furthermore, if the length of ch is greater than 1, then characters in ch after the first are ignored.
All of the StringTools package commands treat strings as (null-terminated) sequences of 8-bit (ASCII) characters. Thus, there is no support for multibyte character encodings, such as unicode encodings.
with⁡StringTools:
Has⁡ABC,A
true
Has⁡ABC,a
false
Has⁡foo:bar,:
See Also
string
StringTools[FirstFromLeft]
StringTools[FirstFromRight]
type[character]
Download Help Document