Hello,
I am new to uipath. I have a long text file and i need to write them line by line. Each line must be max. number of 90 chars and i need to split them from whitespaces. I assigned text as char array and i check if charArray(89) is whitespace or not but if it 89.char is not whitespace then it must look for the last whitespace before 89.char.
For example :
INPUT TEXT : “Hello I’m Robot produced by uipath”
OUTPUT TEXT :
“Hello
I’m Robot
produced by
uipath”
WRONG OUTPUT :
“Hel
lo I’m Ro
bot produ
ced by uip
ath”
I think my starting steps are true with charArray but next up what should i do?
Thanks,