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

email - PHP mail error ... failed to open stream : permission denied -

c# - ListView onScroll event -

c - Linux mmap() error -