Computer Science, asked by Pritigiri5154, 9 months ago

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.

Answers

Answered by Anonymous
0

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.

Similar questions