StringTools[PatternEquivalent] - determine whether two strings determine equivalent patterns
StringTools[PatternCanonicalForm] - compute the pattern canonical form of a string
|
Calling Sequence
|
|
PatternEquivalent( s, t )
PatternCanonicalForm( s )
PatternCanonicalForm( s, 'base' = ch )
|
|
Parameters
|
|
s
|
-
|
Maple string
|
t
|
-
|
Maple string
|
ch
|
-
|
character; Maple character (string of length equal to one)
|
|
|
|
|
Description
|
|
•
|
The PatternCanonicalForm command computes the pattern canonical form of the string s. This is defined to be the lexicographically least string pattern equivalent to s. Note that two strings are pattern equivalent precisely when they have the same pattern canonical form.
|
•
|
Since the numerically least character that can appear in a Maple string has ASCII value equal to , and low ASCII values are generally not printable, the PatternCanonicalForm command takes a 'base' = ch option, which allows you to specify the numerically least character you would like to appear in the output string. In the presence of this option, the pattern canonical form is computed using the specified character rather than the character Char( 1 ). This option is intended mainly for interactive use and debugging. The PatternCanonicalForm command runs measurably faster in the absence of the base option.
|
|
|
Examples
|
|
>
|
|
>
|
|
| (1) |
>
|
|
| (2) |
>
|
|
| (3) |
>
|
|
| (4) |
>
|
|
| (5) |
>
|
|
| (6) |
|
|
Download Help Document
Was this information helpful?