Saved Bookmarks
| 1. |
Regular expressions are the standard way to represent the patterns in the strings. One symbol is '+' which represents all strings that have one or more occurrences of the preceding character. example: t+e+a+ represents any string s that has string of t's followed by string of e's followed by string of a's. Each of these strings of repeating letters must have atleast one character. |
|
Answer» Answer: The CARAT (^) REPRESENTS the start of a line, and the dollar sign ($) denotes the end of a line. A full or PARTIAL regular expression may be FOLLOWED by a special symbol to denote how many times a MATCHING item must exist. |
|