Testing regular expressions
Test for potential security issues that custom code can introduce into your application. Use the Regular Expression tester to test whether a text pattern matches the regular expression.
- In the navigation panel of Dev Studio, click App.
- Use the Application Explorer to open the Code-Pega-Parse.RegExpTester standard activity.
- Click . The system displays a test input form.
- On the test input form, in the Page list, click Empty test page.
- Leave the parameter values blank.
- Click Run.
- Complete the following fields on the detail form:
Field Enter Regular Expression Enter a regular expression to use, using syntax conforming to the Java implementation of regular expressions ( Java.util.regex.Pattern
).Source Enter source text to use to search for matches to the regular expression. UNIX Lines Select this check box to recognize only newline characters ( \n
, also called line feed) as end-of-line delimiters. Clear to recognize additional characters or character pairs as end-of-line delimiters: carriage return (\r
), carriage return followed by newline, next-line (\u0085
), line-separator (\u2028
) or paragraph-separator (\u2029
).Multilines Select this check box to cause the ^ and $ expressions to match immediately after or immediately before a line terminator or the end of the input sequence respectively. Clear to have these expressions only match at the beginning and the end of the entire input sequence.
Canonical Equivalence Select this check box to cause two characters to match if their full canonical decompositions match. For example, the expression
a\u030A
matches the string "?
" when you select this flag. By default, matching does not take canonical equivalence into account.Comments Select this check box to ignore all white space (tabs and spaces) within the Source text, and to ignore all material starting with a # comment character through the end of the line. Dot Matches All Select this check box to indicate that a period character matches any character, including a line terminator. Clear to indicate that a period character matches any character except a line terminator. ASCII Case Insensitive Select this check box to match uppercase with lowercase ASCII characters. Unicode Case Insensitive Select this check box to match uppercase with lowercase ASCII characters. - Click Test Expression.
Previous topic Creating a regular expression rule Next topic Compliance with regulatory standards