FirstFromLeft - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


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

Calling Sequence

FirstFromLeft( char, s )

FirstFromRight( char, s )

Parameters

char

-

string; character to search for

s

-

string; string to search in

Description

• 

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.

Examples

withStringTools:

idxFirstFromLeftb,abcde

idx2

(1)

abcdeidx

b

(2)

FirstFromLeftx,abcde

0

(3)

FirstFromLeftbx,abcde

2

(4)

idxFirstFromRightx,axbcxa

idx5

(5)

axbcxaidx

x

(6)

FirstFromRightx,Random10000

9968

(7)

FirstFromRightx,abcde

0

(8)

See Also

string

StringTools

StringTools[Random]