I have the following line:
hshd household 8/29/2007 LB
I want to match anything that comes before the first space (whitespace). So,
This should do it:
^\S*
I think, that will be good solution: /\S\w*/
/\S\w*/