According to what I've read in perlretut (or at least how I interpret it), \p{Nd} says match a non-digit. Maybe you want \P{Nd} which is "Match anything that is NOT a non-digit (double negative equals a positive). But that's a rather convoluted way of saying \p{Digit} or \p{IsDigit}.I haven't tested, so I'll leave that to you to decide which works best.

Update: I guess I should have tested. :) It does match for me. ...and now I'll have to re-read the paragraph in perlretut. Perl 5.14.2. (And I see now that I did misread: \p{Nd} is indeed an affirmative, and \P{Nd} matches non-digit. So I do get a match, and you don't... we're back to square one. Move on to the next response. ;)


Dave


In reply to Re: Simple regex should match number by davido
in thread Simple regex should match number by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.