regex - ^a-zA-Z0-9 excluding spaces? -


i trying find in paragraph not abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz0123456789 , not space / /gi

/[^a-za-z0-9]|[^ ]/gi 

the above doesn't work!

you try with:

/[^a-za-z0-9\s]/gi 

Comments

Popular posts from this blog

delphi - How to convert bitmaps to video? -

jasper reports - Fixed header in Excel using JasperReports -

python - ('The SQL contains 0 parameter markers, but 50 parameters were supplied', 'HY000') or TypeError: 'tuple' object is not callable -