Below is the important table need to be noted for regular expression in Cisco.
Use \ (backslash) to match the character as is.
Character | | Special Meaning |
---|
period | . | Matches any single character, including white space. |
asterisk | * | Matches 0 or more sequences of the pattern. |
plus sign | + | Matches 1 or more sequences of the pattern. |
question mark | ? | Matches 0 or 1 occurrences of the pattern. |
caret | ^ | Matches the beginning of the input string. |
dollar sign | $ | Matches the end of the input string. |
underscore | _ | Matches a comma (,), left brace ({), right brace (}), left parenthesis, right parenthesis, the beginning of the input string, the end of the input string, or a space. |
brackets | [] | Designates a range of single-character patterns. |
hyphen | - | Separates the end points of a range. |
No comments:
Post a Comment