StringTools
FirstFromLeft
locate the first occurrence of a character from the beginning of a string
FirstFromRight
locate the first occurrence of a character from the end of a string
Calling Sequence
Parameters
Description
Examples
FirstFromLeft( char, s )
FirstFromRight( char, s )
char
-
string; character to search for
s
string; string to search in
The FirstFromLeft(char, s) function returns the index of the first occurrence of character char in the string s, counting from the left (or beginning) of the string. If character char does not occur in string s, the value 0 is returned.
Parameter char must be a string of length at least one. Only the first character of the string is used. Therefore, it is not necessary to create a new one-character string to perform this test if it is the first character of an existing string.
The FirstFromRight(char, s) function is similar to FirstFromLeft except that the index of the first occurrence of the character searching from the right end of the string is returned.
These functions are part of the StringTools package, and so they can be used in the form FirstFromLeft(..) only after executing the command with(StringTools). However, they can always be accessed through the long form of the command by using the form StringTools[FirstFromLeft](..).
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:
idx≔FirstFromLeft⁡b,abcde
idx≔2
abcdeidx
b
FirstFromLeft⁡x,abcde
0
FirstFromLeft⁡bx,abcde
2
idx≔FirstFromRight⁡x,axbcxa
idx≔5
axbcxaidx
x
FirstFromRight⁡x,Random⁡10000
9968
FirstFromRight⁡x,abcde
See Also
string
StringTools[Random]
Download Help Document