Regular Expression
g -- global
i -- case sensetive
+ -- atleast one
? -- optional
* --- zero or more
.at --- matches any word that ending or contains at
g -- global
Examples
i -- case sensitive
a+ --- atleast matching one and proceeding token
example
matching words that contains atleast one e
matching words that contains one e and proceeding token at
matching words that has e and a is optional
matching words that has
e -- compulsory
e-- optional
t -- compulsory
matching words that has
e -- compulsory
e-- optional
t -- optional
matching words that has
e -- compulsory
a-- atleast one a
t -- optional
it matching that word has letter e and r is optional
.at --- matches any word that ending or contains at
Comments
Post a Comment