Hi ,
Assume i have one value= " 1 Rishi"
I need to split and i want to get only “Rishi”
Thanks,
Rishi
Hi ,
Assume i have one value= " 1 Rishi"
I need to split and i want to get only “Rishi”
Thanks,
Rishi
Split(yourstring," ")(1)
if there is a space in start
use this
Split(name.Trim," ")(1)
thanks
@Rishik_Chowdary You can try the below one. This way it always get the name (Rishi) irrespective of the position of the number (1 for now)
Variable of type string Output = System.Text.RegularExpressions.Regex.Replace(Input,"\d+", " ").Trim
Example.zip (2.6 KB)
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.