Active IQ Unified Manager Discussions

Need Assistance with WFA User Input RegEx

PatKing
1,947 Views

Hi Folks,

 

I am hoping someone can help me with this.  Can you please show me how to make the following RegEx inside a WFA User Input NOT be case sensitive?

 

APP\d*

 

The goal is to have the user input always start with "APP" followed by any number of digits.  The above seems to work fine only it's case sensitive.   Thanks in advance!

 

Side note, if there is also a way to force them to not enter a character such as $ that would also be helpful 🙂

 

 

Pat

1 ACCEPTED SOLUTION

moep
1,915 Views

There are cool online tools to learn about regex.

 

Try https://regexr.com

 

The following pattern should work with "APP1234" and "app1234":

(APP|app)\d*

View solution in original post

2 REPLIES 2

moep
1,916 Views

There are cool online tools to learn about regex.

 

Try https://regexr.com

 

The following pattern should work with "APP1234" and "app1234":

(APP|app)\d*

PatKing
1,910 Views

Thanks for the info.  This worked perfectly!

 

 

 

Pat

Public