Hi ,
I need help parsing a string to take everything before the first space.
How can i do this?
Sample string:
NTD.P.R.D.BTRMADF.DRP.- TEST
I want to take everthing before the "-", as there is a space after it.
Here you go. @wonka1234
(\S+)\S{1} \S*
@wonka1234 Like this?
@wonka1234 Another method of using the string functions