I have to split a string into two string in C#. Any text that appears before the first space as one and anything after the other as one.
For example 415 Wall St
415 as one string and Wall St as another string.
14-15 Broadway St
14-15 as one string and Broadway St as another string.
Is there any Regex in C#?
Thanks in advance
TRYfirst before asking!