Need Help…
.
.
.
Help me to get split numbers from the given string =“12354”.
I tell you what i try…
first i put =“0123654” this special no into one variable
then i write below code in assign block
insertval1.Substring(2,insertval1.Length-7)
but ti gives me output like 123654"
and i try for this output=0123654
Fine
hope this expression in a assign activity will help you get the output we need str_output = System.Text.RegularExpressions.Regex.Match(str_input,“\d+”)
interval.Substring(1,interval.Length-1).ToString this sentance says that you will get the string starting after 1 character and up to the the last characters minus 1: