RegEx for a price in £

Posted by Noam Smadja on Stack Overflow See other posts from Stack Overflow or by Noam Smadja
Published on 2010-04-11T21:54:18Z Indexed on 2010/04/11 22:03 UTC
Read the original article Hit count: 696

Filed under:

i have: \£\d+\.\d\d

should find: £6.95 £16.95 etc
+ is one or more
\. is the dot
\d is for a digit

am i wrong? :(

© Stack Overflow or respective owner

Related posts about regex