Hi
Consider the string "Please, go Mr. Gofer and good bye"
I want to split the string at the specific word 'Go'
(not Go in 'Gofer' or in 'good')
in my case
'Go' could be at begin of sentence or at end or somewhere inside sentence.
How can I achieve this.
expected array result should be:
Please,
Mr. Gofer and good bye
I used
Dim ScriptSplitter As String() = scriptfile.Split(New String() {"GO"}, StringSplitOptions.None)
and wrong arraylist I get is
Please,
Mr.
fer and
od bye