Tagged Questions
0
votes
1answer
59 views
Perl print unless regex and line counts
I currently have this working sorting through a zone file for automated deletions..
perl -i -ne 'print unless (/#$DOMAINNAME/ and \$n=7) .. not \$n--' named.conf.ext
(escaping n is required for it ...
2
votes
0answers
117 views
Trying to improve a working regex [migrated]
I am extracting data from a text file. Some of the lines from which I want to extract the data consist of a text description with single spaces, followed by a multiple-space gap preceding four fields ...
-5
votes
2answers
97 views
Why this perl regular expression not working? [closed]
The goal is output the first line of each record. I can achieve this when data file below is configured like this and the input record separator set to: $/="__Data__";
__Data__1aaaaaaaaaaaaaaa
...
1
vote
2answers
40 views
Link Tag Regex Grouping Parse
I'm looking to parse a bunch of link tags and output two specific parts.
<a href='/mysite/test/sample2/_layouts/ListEdit.aspx?List={2A1D7816-6AC1-4B3B-B9E9-9EEF1B31F812}' ...
0
votes
4answers
50 views
Perl program to read from a file which contains different email IDs from different domains
Perl program to read from a file which contains different email IDs from different domains. And list the username by removing the domain part.
Example:
Input file will contain:
abc@gmail.com
...
4
votes
1answer
119 views
What does [\0-9] mean in regex (perl)?
[\0-9]{10,15}
I tried to match phone numbers and ended up writing that regex, and it does match phones containing +, (, ) , but I don't understand why.
2
votes
3answers
52 views
How to match a string which starts with either a new line or after a comma?
My string is $tables="newdb1.table1:100,db2.table2:90,db1.table1:90". My search string is db1.table1 and my aim is to extract the value after : (i.e 90 in this case).
I am using:
if ($tables =~ ...
0
votes
1answer
32 views
titlecase script to find and replace strings within elements in multiple files
I would like to use John Gruber's titlecase script (converts strings to titlecase with small-word exceptions).
My specific task is to search through multiple files and replace text strings within ...
0
votes
1answer
37 views
Regex on Perl Queries using getopt arguments
I am doing a number of exercises to increase my aptitude in Perl, and have run into a situation where I need some guidance.
Currently I a script that takes a command line argument using getopt and ...
1
vote
1answer
44 views
Extracting numbers from LaTeX code in Perl
I have a bunch of big LaTeX tables of coefficients of power series, and I'm trying to write a Perl script to convert them into the actual power series (in Mathematica notation). I've almost got it, ...
1
vote
6answers
58 views
Perl regex specify number of matching groups
Let's say I have the following string
my $val = "3.4 -22.352 4.0"
The goal is to extract each decimal number by itself. There can be any number of spaces on each side or in between. It is also ...
3
votes
5answers
92 views
perl regex to find any number that is a multiple of 5
Perl regex to find any numbers that is multiple of 5.
I tried using =~ /[5]+/ but it is finding only numbers which contains 5, but not multiple of 5.
And also to find string whose length is multiple ...
0
votes
2answers
57 views
perl regex to match any `word character' except Q
I need a regex to match any character or word except Q.
I tried using the expression
/\b((?!(Q)).+?)\b/
but it is not working!
-2
votes
1answer
42 views
Indexing every occurrence of a key in an array of strings with perl
I have an array of strings @Sentences and I am trying to find the best way to index each occurrence of every word with respect to the line number they are on. I thought to do this with a nested for ...
-1
votes
2answers
70 views
Perl regular expression not responding to $
I have the following code:
#!/usr/bin/perl
use Test::Simple tests => 2;
$file = "lalaletc";
$file2 = "lalal";
ok($file =~ m/^lala/);
ok($file2 =~ m/^lala$/);
The output was as following:
...
0
votes
2answers
54 views
Generate an abbreviation from a string in perl using regular expressions
I'm new to Perl...
I want to read a file in Perl. Every time I find two or more capitalized consecutive words, how can I abbreviate them using regular expression? For example,
" A precursor to ...
0
votes
1answer
75 views
Regular expression removing C-style multi-line comments
There is the following Perl code, that removes the C multi-line comments:
sub StripMultilineComments {
my $string=shift();
$string =~ s#/\*.*?\*/##sg; #strip multiline C comments
return ...
1
vote
1answer
65 views
Matching a regex against another regex in Perl
I wonder if there is an elegant way to match one pre-compiled regex against another? I suppose not, but still decided to ask.
Say, I want to find all nodes in Puppet's node.pp corresponding to a ...
-2
votes
2answers
52 views
Perl: how to match a variable number of patterns
I want to grep some information from a column in a file, the column could contain a variable number of instances I'm interested in, see below for a simple example
chr8 + 120807654 ...
0
votes
2answers
46 views
Regex: Match text from nested parenthesis. [closed]
How regex will give me output
se,dc(fr(lo)),km(ji)(hn),... from a string az(se)(dc(fr(lo)))(km(ji)(hn))...
Could anyone tell me how to write regex for obtaining text between the parantheses so that ...
0
votes
2answers
51 views
Perl regex: second pattern match based on the first one
I need to match and extract a line with a pattern1 from a log which should come after the another pattern2 matched line:
for example the log has data like this:
00:00:01 Computing CDA.
00:01:10 ...
6
votes
2answers
66 views
Perl: How to match FULLWIDTH LATIN SMALL
I am using listadmin to manage many mailman-based mailing lists. I have a long list of subjects and from addresses set up to block spam. Recently, I received smarter spam in the sense that it uses ...
0
votes
5answers
52 views
perl regular expression to get the text between 5) some text 6)
5) On 64bit OS go to C:\Program Files (x86)\Common gateway 6) on 32 bit
in the above example i was trying to get the text between 5) and 6) which is On 64bit OS go to C:\Program Files (x86)\Common ...
0
votes
2answers
62 views
Perl one liner + regular expression to match part of word
I write Perl one liner code in order to match IP address according to the following rule:
match only the three first octets while the four octet must be valid 0-255 , additional to that number or "." ...
0
votes
1answer
59 views
regular expression for commenting out all print statements in a file if followed by a particular string
I have a file that looks similar to this:
<?php
print "hello world" . "<br/>";
print "foobar" . "<br/>";
...
// Process parameter
if ($var) {
print $var . ...
3
votes
2answers
64 views
How to do vice versa replacement via regex in Perl
Lets say i want to replace the word "apple" with "orange" and the word "orange" with "apple" how do i do that in Perl via regex?
Here's my code which i have no luck with:
while (<MYFILE>) {
...
0
votes
1answer
50 views
how to modify number of files using regex in perl
Guys i have this sample code from a book that shows how to modify contents in number of files using regex.
#!/usr/bin/perl -w
use strict;
chomp(my $date = `date`);
$^I = ".bak";
while ...
2
votes
2answers
55 views
pattern matching in regular expression (Perl)
Guys i have this problem:
Make a pattern that will match three consecutive copies of whatever is currently contained in $what. That is, if $what is fred, your pattern should match fredfredfred. If ...
0
votes
3answers
68 views
Regex substituting opening parenthesis
As part of a parsing script I'm trying to convert strings like this:
<a href="http://www.web.com/%20Special%20event%202013%20%282%29.pdf">
into
<a ...
-2
votes
2answers
46 views
a perl regular expression for picking up IP addresses out of fwsm/asa firewall rules?
I am using [rt] and would like to create an action to parse a series of firewall rules and pick up the IP addresses in them as a comma-separated value to be applied to a field. My firewall rules look ...
9
votes
2answers
144 views
What is the use of the ampersand in regular expressions in Perl
Guys I have this regular expression in Perl which I don't understand.
s/\w+$/($`!)$&/;
The original string was
"huge dinosaur"
After that regular expression is executed, the string is now:
...
0
votes
1answer
81 views
Perl Extract Youtube ID from URL with Regex
I found a great bit of code here to extract the ID from a youtube URL in PHP.
I'm now having syntax issues converting this regex to Perl.
...
0
votes
4answers
63 views
Regex with perl
I have an sql statement:
uPdate emp set emp_note='I am set to this ' where emp_name='John';
I want to substitute oracle specific statements in upper case so I do the following:
+89 $line ...
0
votes
1answer
44 views
return lines with matching pattern from a file in perl
I need to write a perl script to extract the lines matching different patterns and then operate onto it. I've done following to match and extracts all the lines which contain the matching pattern:
my ...
0
votes
0answers
44 views
MVC4 ActionLink() generating wrong url
I deployed an MVC4 application into a WebForms (.NET 4.0) website.
Everything seems to be working great except for each Html.ActionLink(...) is generating an incorrect href="#####" link attribute.
...
1
vote
3answers
91 views
Does regular expression \d match minus sign and/or decimal point?
I'm look at some old PERL/CGI code to debug an issue and noticed a lot of uses of:
\d - Match non-digit character
\D - Match digit character
Most online docs mention that \d is the same as [0-9], ...
0
votes
1answer
41 views
Substituting an element with whitespace. ( Perl Regex )
I am trying to substitute any \n\ character with whitespace, but somehow \s isn't recognised as a whitespace substitution character.
$match_to_array =~ s/\n/\s/;
0
votes
4answers
42 views
using sed to replace ^[(s3B with blank space
I'm trying to use sed with perl to replace ^[(s3B with an empty string in several files.
s/^[(s3B// isn't working though, so I'm wondering what else I could try.
0
votes
4answers
66 views
Perl Regular Expression extracting sub-string?
I have a String variable containing something like ABCD.asd.qwe.com:/dir1.
I want to extract the ABCD portion i.e. the portion from beginning till the first appearance of .. The problem is that there ...
0
votes
2answers
69 views
How to parse some text from file in Perl [closed]
Hello i want to parse file with structure like this... after name: {} it can be other things with same form. something: {}.
---
NAMES:
first_thing: {}
second_thing: {}
name: {}
Thanks for ...
0
votes
3answers
62 views
How can I account for numbers in scientific notation and in decimal form in perl regex?
I'm new to Perl regex so I appreciate any help. I am parsing BLAST outputs. Right now, I can only account for hits where the e-value only contains integers and decimals. How can I include hits where ...
2
votes
1answer
56 views
Substitution: “\p{Cntrl}” - “\P{Print}”
Until now I use these two substitutions before printing "$string" to the terminal.
$string =~ s/\p{Space}/ /g;
$string =~ s/\p{Cntrl}//g;
Is there something that I should consider, when I replace ...
-5
votes
0answers
47 views
Perl regex Assistance [closed]
I am having some serious trouble with Perl creating regex for these three different statements. I have been looking online and just cant figure it out
For any single word following an equal sign (=), ...
2
votes
3answers
95 views
Regular expression Capture and Backrefence
Here's the string I'm searching.
T+4ACCGT+12CAAGTACTACCGT+12CAAGTACTACCGT+4ACCGA+6CTACCGT+12CAAGTACTACCGT+12CAAGTACTACCG
I want to capture the digits behind the number for X digits (X being the ...
1
vote
3answers
45 views
How to delete everything before a variable number with Perl/Regex
I'm cleaning a file with Perl and I have one line that is a bit tough to work with.
It looks something like:
^L#$%@@$^%^3456 [rest of string]
but I need to get rid of everything before the 3456
...
3
votes
3answers
69 views
Sorting of file name into an array using Perl and Regex
sub open_directory {
my $directory = shift @_;
my @files = ();
opendir (my $dh, $directory) or die "Couldn't open dir '$directory' : $!";
my @all_files = readdir $dh;
closedir ...
-3
votes
2answers
102 views
perl : unmatched ) in regex error [closed]
I'm no perl programmer, so I just need this simple script to run:
perl -e 'open(FILE,"tmp.plot"); my $seqLength = 643292; my $count=1; while(my $ln = <FILE>){ if( $ln =~ m/^(\d+)\s+(\d+)/ ) { ...
1
vote
2answers
71 views
Substring replacement using regex
I am having a terrible time with learning Perl regular expressions. I am trying to :
Replace all occurrences of a single # at the beginning of a line with: #####.
Replace all occurrences of a full ...
0
votes
2answers
55 views
EXtracting sub-string in Perl?
I have a string in a variable:
$mystr = "some text %PARTS/dir1/dir2/myfile.abc some more text";
Now %PARTS is literally present in the string, it is not a variable or hash.
I want to extract the ...
0
votes
1answer
76 views
In Perl, what is the meaning of =()= [duplicate]
Really simple question but the =()= operator (or operators) lets me count the matches in regex. What is this operator called and what exactly is it doing?
Example usage:
my $count_quotes =()= ...



