I have the following line:
hshd household 8/29/2007 LB
I want to match anything that comes before the first space (whitespace). So, in this case, I want to get back
hshd
I have the following line:
hshd household 8/29/2007 LB
I want to match anything that comes before the first space (whitespace). So, in this case, I want to get back
hshd
([^\s]+)
works
Perhaps you could try ([^ ]+) .*
, which should give you everything to the first blank in your first group.
Derived from the answer of @SilentGhost I would use:
^([\S]+)
Check out this interactive regexr.com page to see the result and explanation for the suggested solution.
I think, a word was created with more than one letters. My suggestion is:
[^\s\s$]{2,}
^([^\s]+) use this it correctly matches only the first word you can test this using this link https://regex101.com/