regex to match a single character that is anything but a space -
I need to match the same letter which is nothing but I do not know how to do it with regex To do.
should be sufficiently:
[^]
If you want to expand it, but for white-space (line breaks, tabs, spaces, hard places):
[^ \ s]
or
\ S
Comments
Post a Comment