\n,\r is white space.
you can verify by following script:
<?php
$str = "foo \n 0";
$str = preg_replace('/\s\s+/', ' ', $str);
echo $str;
?>
On 5 May 2011 17:19, Mike Adams <[email protected]> wrote:
> Using this tool:
> http://www.spaweditor.com/scripts/regex/index.php
>
> Using this regex:
> /(\s[r|rural]+\s?[d|delivery]+\s*\d)/i
>
> Using this sample data set:
> "
> 2 West coast, Rural delivery 1
> 20 West Coast Road, RD2
> 222 Hard Road, RD 3, Tiparere
> 3 hard 11 hard
> 33 ford road rural Delivery 3
> 1 fords road rd 1
> 5 foo rd
> 6 left road rUrAl DeLiVeRy 2
> "
>
> Q1 ?
> Setting "preg_match_all" i am getting one false positive to sort out.
> That is across two lines. It is the "rd" at the end of "5 foo rd" and the 6
> starting the next line.
>
> Q2?
> Not sure why i get each result twice.
>
> TIA
>
> --
> NZ PHP Users Group: http://groups.google.com/group/nzphpug
> To post, send email to [email protected]
> To unsubscribe, send email to
> [email protected]
--
NZ PHP Users Group: http://groups.google.com/group/nzphpug
To post, send email to [email protected]
To unsubscribe, send email to
[email protected]