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

Popular posts from this blog

c# - ListView onScroll event -

PHP - get image from byte array -

Linux Terminal Problem with Non-Canonical Terminal I/O app -