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 -

Python ctypes access violation with const pointer arguments -