Hello,
I would like to get the value based on the regex. For example, I have a string text as follows:
“test.txt” (double quote is included in the string)
I want to use regex to get the value text.txt.
Hello,
I would like to get the value based on the regex. For example, I have a string text as follows:
“test.txt” (double quote is included in the string)
I want to use regex to get the value text.txt.
Hi, try with this. If the value have that format “text.txt” you can get in the branch.
/^"\S+.txt"$/
Regards
But if I’m using a branch step, I’m just executing a conditional logic. I just want to search the string and give me the value. Basically, I want everything inside the double quote which is text.txt
Try the following expression:
([\w.]+)
Talha,
WHere do I put that expression?