how to find non word character from any text. what is the regexp for non word char?
problem in Regular Expression in javascript Anonymous User 2457 16 Apr 2011 how to find non word character from any text. what is the regexp for non word char?
hi, vikas
check it
new RegExp("\W")
or
/\W/