Regex: Match any character (including whitespace) except a comma
- by selecsosi
I would like to match any character and any whitespace except comma with regex. Only matching any character except comma gives me:
[^,]*
but I also want to match any whitespace characters, tabs, space, newline, etc. anywhere in the string.
For example, I would like to be able to match all of this up until the comma:
"bla bla bla"
"asdfasdfasdfasdfasdfasdf"
"asdfasdfasdf",
Is there a simple way to do this without knowing where the whitespace may be?