String characters Manipulation

Hello,
From this text : Helloworld1/34566789/GoodbyeWorld3/
I’ve extracted GoodbyeWorld with : Split((Split(text,“9/”)(1).ToString),“3/”)(0).ToString

But I don’t know how to extract “Helloworld”, could you help me with that ?

1 Like

like this
System.Text.RegularExpressions.Regex.Match(Split(strinput,“/”)(0).ToString,“[A-Za-z].+”).ToString

1 Like

Same as the above,

Split(text,"1"”)(0).ToString
1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.