I have a String which contains
I want to split the string at “_” (underscore) and assign each item into string variable.
How can I acheive this.
Pls advise.
Thanks.
I have a String which contains
I want to split the string at “_” (underscore) and assign each item into string variable.
How can I acheive this.
Pls advise.
Thanks.
Yah like this
If the input is in str_input variable
Then use a assign activity like this
arr_values = Split(str_input.ToString,”_”)
Where each value splitter will now be stored in a array variable and it can be brained by mentioning the index which starts from 0 for the first element
Where arr_values is a variable of type array of string
Cheers @Rani1978
Thanks a lot Palaniyappan.
Cheers @Rani1978
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.