Match whitespace but not newlines

Viewed 188901

I sometimes want to match whitespace but not newline.

So far I've been resorting to [ \t]. Is there a less awkward way?

7 Answers

Put the regex below in the find section and select Regular Expression from "Search Mode":

[^\S\r\n]+
Related