Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
12-07-21 04:06 PM
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.
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.
Answered! Go to Answer.
1 BEST ANSWER
Helpful Answers
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
12-07-21 04:17 PM
Found the answer right after in this thread
https://stackoverflow.com/questions/9655164/regex-ignore-case-sensitivity
'(?i)sometext' will do the trick
https://stackoverflow.com/questions/9655164/regex-ignore-case-sensitivity
'(?i)sometext' will do the trick
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
12-07-21 04:17 PM
Found the answer right after in this thread
https://stackoverflow.com/questions/9655164/regex-ignore-case-sensitivity
'(?i)sometext' will do the trick
https://stackoverflow.com/questions/9655164/regex-ignore-case-sensitivity
'(?i)sometext' will do the trick
