What is diffrence between using + and * with regullar expressions in Perl ?

Question

What is diffrence between using + and * with regullar expressions in Perl ?

Re: What is diffrence between using + and * with regullar expres

* means, namely match 0 or more
+ is match 1 or more