cancel
Showing results for 
Search instead for 
Did you mean: 

How to use regex in blue prism

diedoprel
Level 3
Hi All,

I had a question regarding Blue Prism's regex implementation.
I've created a wait stage which should wait for a certain URL to show up, I know what text to expect but not what case to expect.
How would I specify the following regex in Blue Prism's Application Element Parameters '/sometext/i'
Putting in 'sometext' or '.*' works as regex, but I don't know how to add the regex flag i (case insensitive).

Any help would be greatly appreciated.
1 BEST ANSWER

Best Answers

diedoprel
Level 3
Found the answer right after in this thread
https://stackoverflow.com/questions/9655164/regex-ignore-case-sensitivity

'(?i)sometext' will do the trick

View answer in original post

1 REPLY 1

diedoprel
Level 3
Found the answer right after in this thread
https://stackoverflow.com/questions/9655164/regex-ignore-case-sensitivity

'(?i)sometext' will do the trick