What is diffrence between using + and * with regullar expressions in Perl ?
* means, namely match 0 or more + is match 1 or more
Re: What is diffrence between using + and * with regullar expres
* means, namely match 0 or more
+ is match 1 or more