Address :- New Delhi Contact :- 8882880965
STP COMPUTER EDUCATION
The Best Quality of Software Programming Computer Education
[Link]
SUBJECT :- WEB DESIGNING
Chapter - 23
Match Function With RegExp
Regular expression are used to perform pattern-matching and "search-and-
replace" functions on text.
Syntax :-
/[pattern]/modifier
Example :-
use this for capital letter : /[A-Z]/g
use this for small letter : /[a-z]/g
use this for numbers : /[0-9]/g
Modifiers
1. g = case sensitive
2. I = case insensitive
match()