Numric Regex with ":" how to add -


I am using the following regsx which is working fine for numbers, only me ":" how do i

This is not working for me ...

  @ "^ [0- 9] (:) + \ s * $"   

for example

  80:80 8000 8    

You can do this with the following regex:

^ \ d [\ d:] * \s * $

Demo:

Comments

Popular posts from this blog

Pass DB Connection parameters to a Kettle a.k.a PDI table Input step dynamically from Excel -

multithreading - PhantomJS-Node in a for Loop -

c++ - MATLAB .m file to .mex file using Matlab Compiler -