Hi,
can you help me to split a string starting with 1" and ending with 3".
eg: 1" UiPath Community Forum 3"
I want to escape the string. Please help
@madhusudhanan3964 You can use Regular expression
v1 = 1" UiPath Community Forum 3"
Regex=(?<=1").*(?=3")
It will give result UiPath Community Forum
1 Like
Thank you so much @indra
1 Like