200

I need to match a single character that is anything but a space but I don't know how to do that with regex.

Jonathan Leffler
  • 666,971
  • 126
  • 813
  • 1,185
Ryan
  • 10,333
  • 16
  • 33
  • 37

2 Answers2

281

The following should suffice:

[^ ]

If you want to expand that to anything but white-space (line breaks, tabs, spaces, hard spaces):

[^\s]

or

\S  # Note this is a CAPITAL 'S'!
Gabriel Staples
  • 11,777
  • 3
  • 74
  • 108
Andrew Moore
  • 87,539
  • 30
  • 158
  • 173
136
  • \s matches any white-space character
  • \S matches any non-white-space character
  • You can match a space character with just the space character;
  • [^ ] matches anything but a space character.

Pick whichever is most appropriate.

cletus
  • 578,732
  • 155
  • 890
  • 933