Hi UiPath,
Let say I have a string with multiple rows.
example:
(065-CDL1)
(065-CDL3)
as you can see there is no delimiter but only new line
How can I split 065-CDL1 AND 065-CDL3?
is it possible?
thanks!
Hi UiPath,
Let say I have a string with multiple rows.
example:
(065-CDL1)
(065-CDL3)
as you can see there is no delimiter but only new line
How can I split 065-CDL1 AND 065-CDL3?
is it possible?
thanks!
Hi,
How about the following?
arrStr = yourString.Split(vbcrlf.ToCharArray,StringSplitOptions.RemoveEmptyEntries)
Regards,
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.