http://www.perlmonks.org?node_id=1013217


in reply to Regex: Char-class equivalent for [^]

So a character class that matches everything? Did you check perlrecharclass

\p{All} and not all is \P{All}

\p{All} in javascript is  [\u0000-\u10FFFF] and not all [^\u0000-\u10FFFF]

in perl  [\x{U+0000}-\x{U+10FFFF}]  [^\x{U+0000}-\x{U+10FFFF}]

Replies are listed 'Best First'.
Re^2: Regex: Char-class equivalent for [^]
by LanX (Saint) on Jan 14, 2013 at 14:16 UTC
    > Did you check perlrecharclass

    Yes i did. Did you?

    p{All} isn't mentioned there

    Anyway googling led me to perluniprops, a perldoc not available for 5.10.

    Cheers Rolf

      :) well, perlrecharclass links perluniprops

      aslo, shhould have bee  [\N{U+0000}-\N{U+10FFFF}]

      and for javascript \u only takes 16 bits, whoops :)