Hello everyone,
I would like to know how i can use the ’ delimiter inside a string.
I need to reproduce parentid=‘r2’ so far i am writing like " 'r " + “2” + " ’ " and i get a end of expression expected message.
Hello everyone,
I would like to know how i can use the ’ delimiter inside a string.
I need to reproduce parentid=‘r2’ so far i am writing like " 'r " + “2” + " ’ " and i get a end of expression expected message.
If MyStr
is your string and MyStrArr
is the array of strings from splitting on the '
symbol:
MyStrArr = MyStr.Split("'"c)
Just need to know how to put a single quote inside the string.
I’m not splitting anything, i need to put a single quote inside a string and attach it to something like another string.
Yes, i got it working apparently the UiPath system does something weird where you need to erase everything you have and retype it to “refresh”.
Thank you.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.