I am learning Perl, so please bear with me for this noob question.
How do I repeat a character n times in a string?
I want to do something like below:
$numOfChar = 10;
s/^\s*(.*)/' ' x $numOfChar$1/;
|
|
I am learning Perl, so please bear with me for this noob question. How do I repeat a character n times in a string? I want to do something like below:
|
|||
|
|
|
By default, substitutions take a string as the part to substitute. To execute code in the substitution process you have to use the
This will add
or if it's a part of a larger script use the
|
||
|
|
|
|
Your regular expression can be written as:
but - you can do it with:
Or without using regexps at all:
|
||||
|
|
|
You're right. Perl's
EDIT: To do this inside a regular expression, it would probably be best (a.k.a. most maintainer friendly) to just assign the value to another variable.
There are ways to do it without an extra variable, but it's just my $0.02 that it'll be easier to maintain if you do it this way. EDIT: I fixed my regex. Sorry I didn't read it right the first time. |
|||