Hi Friends,
How to find total number of line from string in uipath
ex. Input is -
Sunday
Monday
Tuesday
o/p should be :- count is 3
how we can achieve it.
Hi Friends,
How to find total number of line from string in uipath
ex. Input is -
Sunday
Monday
Tuesday
o/p should be :- count is 3
how we can achieve it.
The expression be like
Int_count = Str_input.Split(Environment.Newline.ToArray()).Count
Where int_count is a variable of type int32
Now use a writeline activity like this
”Count is “+int_count.ToString
Cheers @Rup_1
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.