[Solved] Regular expression php for a pro [closed]


Here is my version:

function test($v)
{
    if (preg_match('/^\\[("number")(,"number")*\\]$/', $v))
        echo 'ok<br>';
    else
        echo 'fail<br>';
}

or if “number” is really digits, this one:

function test($v)
{
    if (preg_match('/^\\[("[0-9]+")(,"[0-9]+")*\\]$/', $v))
        echo 'ok<br>';
    else
        echo 'fail<br>';
}

NOTE – only positive naturals are accepted, need to change to negative and decimal/floating numbers

1

solved Regular expression php for a pro [closed]