|
Posted by Benjamin on 12/08/06 03:32
Bosconian wrote:
> I need a way to validate the followng data with these restrictions:
>
> no leading and trailing white space
> no trailing comma
> double quoted numeric/alpha pairs
> each pair on a separate line
>
> For example:
>
> "1","Peter"
> "2","Paul"
> "3","Mary"
>
> Any help is appreciated.
A regular expression would be great here. Try this:
preg_match($data, "/^(\"\d+\",\"[A-Za-z]+\")+$/")
Navigation:
[Reply to this message]
|