I have strings of data: number, space(s), then a word that can contain letters, numbers and special characters as well as spaces. I need to isolate the first number only, and then also the words only so I can re-render the data into a table.
1 foo
2 ba_r
3 foo bar
4 fo-o
EDIT: I was attempting this with "^[0-9]+[" "]" however that doesn't work.