StringTools
MatchFence
find the matching fence character to one in a string of text
Calling Sequence
Parameters
Description
Examples
MatchFence( s, pos )
s
-
string; string to examine
pos
posint; the position of a fence character in the string s
The MatchFence procedure locates the matching fence character to one specified in the input text s by its position pos. It returns the position, in s, of the matching fence character if present, or otherwise. If is not a fence character, that is, not one of , an exception is raised.
All of the StringTools package commands treat strings as (null-terminated) sequences of -bit (ASCII) characters. Thus, there is no support for multibyte character encodings, such as unicode encodings.
Error, (in StringTools:-MatchFence) the character `a' is not a fence character
See Also
string
StringTools[IsBalanced]
Download Help Document