I need a regex that will ensure the the user input looks like this “auth+live+xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx’ Where x is alpha numeric so I got the alpha numeric done like so
/^[a-z0-9]+$/i
How do I ensure that input starts with auth+live+ ?
any help would be greatly appreciated
I think this does what you’re asking for: