Regex – A Weblog of Priyank Maniar https://priyank.rocks Articles on web development & mobile app development Sun, 07 Jul 2019 16:38:12 +0000 en-US hourly 1 https://wordpress.org/?v=6.6.2 Regular Expressions https://priyank.rocks/regular-expressions-2/ Sun, 07 Jul 2019 16:38:10 +0000 http://priyank.rocks/?p=489 The best playground for regex: https://regexr.com/

All kinds of whitespace – tabs, line breaks, space etc.


1
/\s/g

Only alphabets and space


1
[^a-zA-Z ]

Alphabets numbers and space


1
[^a-zA-Z0-9 ]
]]>