REGEX - Allow Numbers and . - / -


I just need a regular expression to allow numeric and ( .- / )

It should give some such permission:

011.235673.98923 / 0001-12

The pattern you are looking at matches only those stars,., -, and /:

  ^ [0 -9 \. \ - \ $]   

If you have a specific language that you are looking to implement it, then I can help you.

Comments

Popular posts from this blog

mysql - BLOB/TEXT column 'value' used in key specification without a key length -

memcached - Django cache performance -