regex statement for matching on last three charcaters with three digits -


i have 2 servers wpoapp100 , wpodev02

i syntax match on wpo , disregard app or number. how this?

use match 2 words:

/^wpo(app100|dev02)$/ 

or use match words stating with:

/^wpo[a-z0-9]*$/ 

Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

c# - How do I get the Nth largest element from a list with duplicates, using LINQ? -

jsp - "Sending a redirect is forbidden after the response has been committed" in sendRedirect -