MatchFence - Maple Help

Online Help

All Products    Maple    MapleSim


StringTools

  

MatchFence

  

find the matching fence character to one in a string of text

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

MatchFence( s, pos )

Parameters

s

-

string; string to examine

pos

-

posint; the position of a fence character in the string s

Description

• 

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 0 otherwise. If spos 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 8-bit (ASCII) characters.  Thus, there is no support for multibyte character encodings, such as unicode encodings.

Examples

withStringTools:

MatchFenceab{cde}fg,3

7

(1)

nMatchFenceab(cde)fg,3

n7

(2)

MatchFenceab(cde)fg,n

3

(3)

MatchFenceab(cde)fg,1

Error, (in StringTools:-MatchFence) the character `a' is not a fence character

MatchFenceab[cdefg,3

0

(4)

MatchFenceab{cde]fg,3

0

(5)

See Also

string

StringTools

StringTools[IsBalanced]