hello,
i have a string “IN - b b Fax: +91(70)1111” i would like to collect only IN - b b from the string.
please suggest the easiest way to collect the part .
thanks in advance
hello,
i have a string “IN - b b Fax: +91(70)1111” i would like to collect only IN - b b from the string.
please suggest the easiest way to collect the part .
thanks in advance
Hi
If the input is in strinput
Then
Stroutput = Split(strinput.ToString,”Fax”)(0).ToString.Trim
Cheers @roysupriya21
thanks you so much…
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.