http://qs321.pair.com?node_id=688506


in reply to Re: Reg Exp
in thread Reg Exp

Hi psini,

That solution seems to be not fit here. In the 'test1' string, there is no parantheses to split, so it will obviously fail and you can't split the string.

OP wants to match the 'test1' string where the platform is missing and which is present in 'test' string.

Prasad

Replies are listed 'Best First'.
Re^3: Reg Exp
by psini (Deacon) on May 26, 2008 at 10:01 UTC

    Yep, I realized it reading the other answers, sorry

    Rule One: Do not act incautiously when confronting a little bald wrinkly smiling man.

Re^3: Reg Exp
by chrism01 (Friar) on May 27, 2008 at 07:20 UTC
    Actually, IFF (if and only if) there are only the 2 variations presented in the OP, you could just use a

    @arr=split(/ /,$test);

    ... and count the size of the array

    $size=scalar(@arr);

    if its 4, arr[2]is the OS, otherwise no OS was specified