in reply to Regx: match without regarding space and case

Adding up to it, is there a way to differentiate the space characters \s and \t (That means a single space like ' ' and a tab like (' ') this.

The world is so big for any individual to conquer

  • Comment on Re: Regx: match without regarding space and case

Replies are listed 'Best First'.
Re^2: Regx: match without regarding space and case
by Roy Johnson (Monsignor) on Sep 13, 2007 at 19:59 UTC
    \s is not a space, but is any whitespace, including tab and newline. You differentiate " " from "\t" just like this.

    Caution: Contents may have been coded under pressure.