I am trying to craft a regular expression that will match all characters after (but not including) the first space in a string.
Input text:
foo bar b
You can also try this
(?s)(?<=\S*\s+).*
or
(?s)\S*\s+(.*)//group 1 has your match
With (?s) . would also match newlines
(?s)
.