I hereby claim:
- I am ChiragKolani on github.
- I am chiragkolani (https://keybase.io/chiragkolani) on keybase.
- I have a public key whose fingerprint is 4D9F 1232 7165 0C91 ACEF BC2D F308 1F9E 23FC FE9D
To claim this, I am signing this object:
| let regex; | |
| /* matching a specific string */ | |
| regex = /hello/; // looks for the string between the forward slashes (case-sensitive)... matches "hello", "hello123", "123hello123", "123hello"; doesn't match for "hell0", "Hello" | |
| regex = /hello/i; // looks for the string between the forward slashes (case-insensitive)... matches "hello", "HelLo", "123HelLO" | |
| regex = /hello/g; // looks for multiple occurrences of string between the forward slashes... | |
| /* wildcards */ | |
| regex = /h.llo/; // the "." matches any one character other than a new line character... matches "hello", "hallo" but not "h\nllo" | |
| regex = /h.*llo/; // the "*" matches any character(s) zero or more times... matches "hello", "heeeeeello", "hllo", "hwarwareallo" |
I hereby claim:
To claim this, I am signing this object: