Re: A Regular Expression Problem in Perl 5.28
"Martin McCormick" <[email protected]> Tue, 28 Mar 2023 17:00:15 -0500
| Newsgroups | gmane.comp.lang.perl.beginners |
|---|---|
| Message-ID | <[email protected]> |
Uri Guttman <[email protected]> writes: > yes, but he kept the {5,} repeat count. so i just kept it too. Now that I know how this works, I will probably change to {4,} as this would match 4 or more digits. From reading the documentation, {4} means 4 and only 4. {4,6} means 4 but nothing else except 6. {N,} means N as a low limit but any number higher. This is an application that only I am interested in so, if I need to modify things, I can without causing any grief. Martin -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] http://learn.perl.org/