Error Messages/40911
< Error Messages
Revision as of 01:51, 9 February 2010 by AManandhar (talk | contribs) (Created page with '= Error Message Examples = The regular expression used in SplitText does not contain <<subPattern>> 3. = Cause = The <<subPattern>> number or name passed to the SplitText…')
Error Message Examples
The regular expression used in SplitText does not contain <<subPattern>> 3.
Cause
The <<subPattern>> number or name passed to the SplitText was not found in the regular expression passed as the <<seperator>> parameter.
Example of calling SplitText using regular expressions:
SplitText('17.5 19 1. .5 0.1111', '(\d(?<a>\.)\d)|(?<a>\s+)', re:1, subpattern:'a' )
Result: ['17','5','19','1.','.5','0','1111']
Remedies
Specify either the subpattern number or the subpattern name as the <<subPattern>> parameter to SplitText.
Comments
<comments />
Enable comment auto-refresher