What does the following syntax mean in Perl?
$line =~ /([^:]+):/;
and
$line =~ s/([^:]+):/$replace/;
|
|
|
|
|
|
|
You want to return something matching one or more characters that are anything but : followed by a : and the second one you want to do the same thing but replace it with $replace. |
||
|
|
|
|
is a character class that matches any character other than
means match one or more of such characters. I am not sure the capturing parentheses are needed. In any case,
captures a sequence of one or more non-colon characters followed by a colon. |
||||||||
|
|
|
The first one captures the part in front of a colon from a line, such as "abc" in the string "abc:foo". More precisely it matches at least one non-colon character (though as many as possible) directly before a colon and puts them into a capture group. The second one substitutes said part, although this time including the colon by the contents of the variable |
||||||
|
|
|
Matches anything that does not contain : before :/ If $line = "http://www.google.com", it will match http (the variable $1 will contain http)
This time, replace the value matched by the content of the variable $replace |
||
|
|
|
|
I may be misunderstanding some of the previous answers, but I think that there's a confusion about the second example. It will not replace only the captured item (i.e., one or more non-colons up until a colon) by $replaced. It will replace all of This means if you don't include a colon in
Output:
I'm not sure if you are just looking at example code, but you unless you plan to use the capture I'm not sure you really want it in these examples. If you are very unfamiliar with regular expressions (or Perl), you should look at |
|||
|
|
|
|
The =~ operator is called the binding operator, it runs a regex or substitution against a scalar value (in this case $line). As for the regex itself,
the So, putting that information together we can see that the regex will match one or more non-colon characters (saving this part to
This is a substitution. Substitutions have two parts, the regex, and the replacement string. The regex part follows all of the same rules as normal regexes. The replacement part is treated like a double quoted string. The substitution replaces whatever matches the regex with the replacement, so given the following code
The $line variable will hold the string You may find it useful to read
|
||
|
|
|
|
perl -MYAPE::Regex::Explain -e "print YAPE::Regex::Explain->new('([^:]+):')->explain"
|
||
|
|