I have a string which starts with //#... goes upto the newline characater. I have figured out the regex for the which is this ..#([^\n]*).
My question is how do you remove this line from a file if the following condition matches
|
|
|
|
|
|
|
Your regex is badly chosen on several points:
Altogether, that makes it So that leaves you with As for removing the line from the file, as everyone else explained, read it in line by line and print all the lines you want to keep back to another file. If you are not doing this within a larger program, use perl’s command line switches to do it easily:
Here, the If you want to do this within the context of a larger program, the easiest way to do it safely is to open the file twice, once for reading, and separately, with IO::AtomicFile, another time for writing. IO::AtomicFile will replace the original file only if it’s successfully closed. |
||||
|
|
|
As others have pointed out, if the end goal is only to remove lines starting with
or
if you prefer in-place editing. Note that in perl your regex would be
which matches two slashes followed by a # at the start of the string. Note that you avoid "backslashitis" by using the match operator One problem that might come up in your script is if the entire file is slurped up into a string, newlines and all. To defend against that case, use the /m (multiline) modifier on the regex:
This allows ^ to match at the beginning of the string and after a newline. You would think there was a way to strip or match the lines matching
even though that creates a copy instead of an in-place edit on the original string |
||
|
|
|
|
To filter out all the lines in a file that match a certain regex:
The '.orig' after the -i switch creates a backup of the file with the given extension (.orig). You can skip it if you don't need a backup (just use -i). The -n switch causes perl to execute your instructions (-e ' ... ') for each line in the file. The line is stored in $_ (which is also the default argument for many instructions, in this case: print and regex matching). Finally, the argument to the -e switch says "print the line unless it matches a # character at the start of the line. PS. There is also a -p switch which behaves like -n, except the lines are always printed (good for searching and replacing) |
|||
|
|
|
|
You really don't need perl for this.
I <3 sed. |
|||
|
|
|
|
Read the file line by line and only write those lines to a new file that don't match the regex. You cannot just remove a line. |
||
|
|
|
|
Does it start at the begining of a line or can it appear anywhere? If the former s/old/new is what you want. If the latter, I'll have to figure that out. I suspect that back referances could be used somehow. |
||
|
|
|
|
I don't think your regex is correct. First you need to start with ^ or else it will match this pattern anywhere on the line. Second, the
Then do what EricSchaefer says and read the file line by line only writing lines that don't match. -- |
||
|
|
|
|
Try the following:
If you are using windows you need double quotes instead of single quotes. You can do the same with grep
|
||
|
|
|
|
Iterate over each line in the file, and skip the line if it matches the pattern:
my $fh = new FileHandle 'filename'
or die "Failed to open file - $!";
while (my $line = $fh->getline) {
next if $line =~ m{^//#};
print $line;
}
close $fh;
This will print all lines from the file, except the line that starts with '//#'. |
||
|
|