Match until characters until space

hi!

quick question: is there a way to “match any character until a space”?
so far, I couldn’t find anything to make this possible. I have to include all special characters in an identifier, adding them 1 by 1 is quite tedious and I will for sure miss some, an exclusion would be way easier.

best,
peter

In token expressions, you can say ![ ]+ to match any sequence of non-space characters.

oh god, I guess I should take a break xD
thx so much, too easy :smile: