regular expression: match any word until first space
([^\s]+)
works
Perhaps you could try ([^ ]+) .*
, which should give you everything to the first blank in your first group.
This should do it:
^\S*
([^\s]+)
works
Perhaps you could try ([^ ]+) .*
, which should give you everything to the first blank in your first group.
This should do it:
^\S*