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
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
Post a Comment