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

rdbms - what exactly the undo information lives in oracle? -

bash - How do you programmatically add a bats test? -

clojure - 'get' replacement that throws exception on not found? -