1
vote
2answers
36 views

Perl search and replace enters endless loop

I am trying to match and replace in multiple files some string using local $/; open(FILE, "<error.c"); $document=<FILE>; close(FILE); $found=0; while($document=~s/([a-z_]+)\.h/$1_new\.h/gs){ ...
0
votes
1answer
61 views

List comparision in perl

The command "sh value" gives A: optimal size: 100 feature : ON Minimum size: 0 CPU load: 100% Done The name-value pairs written above are parameters wit default values. I want to compare the ...
1
vote
5answers
45 views

Perl: Need to match a pattern

I have a variable containing a string. $name="mak -o create.pl -n create.txt"; Now I want to match a pattern in which I can get the value as create.pl which will always be followed by -o. That is , ...
0
votes
1answer
39 views

Adding unique elements to a Perl array determined by regex

I'm writing a perl script to analyze error codes and determining whether or not they are unique. The error is unique depending on what line it's on. A standard error message may be: RT Warning: No ...
2
votes
2answers
83 views

Perl: How to replace a variable by its value

Suppose, if a table has a column called test and inside test I have written a row as "Dear $name, Hello" where $name is a variable. I need to select this row for which I'm doing my $test = ...
1
vote
3answers
60 views

Regex to parse html for sentences?

I know that HTML:Parser is a thing and from reading around, I've realized that trying to parse html with regex is usually a suboptimal way of doing things, but for a Perl class I'm currently trying to ...
1
vote
3answers
91 views

please explain this regular expression

^[[:space:]]*@ I can't figure out what the [[:space:]]* means in the above regular expression. Please help, thanks!
0
votes
1answer
31 views

cant match metacharcters with turn off the characters using escape sequence \Q in perl

unable to match the below string $String = "[{}][{{{}}}]"; $true = $string =~ m/\Q[({})+]+\E/; print $true;
0
votes
1answer
26 views

perl Match multiline pattern in a file

I have a program which reads a file line by line and gets data when a pattern is matched. currently it extracts patterns like function abc (int a, int b) but i have some functions like function xyz ...
0
votes
5answers
39 views

cutting a portion of url using regular expression in perl

I have the following url : http://stagingbugzilla.cpiv.com/html/estVerificationPool/estPendingBugs.php?team_name=General%20administration Need to proper way to extract the value after "?" Need to ...
2
votes
4answers
81 views

Perl Regex Extraction

I have a file which contains the details as follows: /var/example/12.1.1.0-gn/product /var/example/12.1.1.0-xn/product . . /var/example/13.1.1.0-gn/product ...
2
votes
2answers
44 views

sort by subset of perl string

I have a hash. The hash key is a long string "str_3432_123_A12_C02_xy_ut" I want to sort the keys by a subset of the string which will have the format A12_C02. I assume no other part of the string ...
0
votes
0answers
94 views

Perl end-of-line regex

I have a Perl script that executes a regex to find a markup tag (<tag>). My regex is: <tag([^>]+)> This works for most intances, however, I've found an instance where it's not ...
0
votes
0answers
24 views

RegEx and Mod_rewrite to convert dynamic to static URLs and static to dynamic URLs

I have two intertwined problems to solve. My stock photography website is driven by a PERL-scripted program called ImageFolio, purchased in 2005. The program allows for display of photos by ...
0
votes
1answer
73 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 ...
-3
votes
2answers
101 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
43 views

Link Tag Regex Grouping Parse [duplicate]

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
55 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
125 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
40 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
45 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
71 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
59 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
53 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
49 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
52 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
70 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
55 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
67 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
65 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
56 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
150 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
85 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
47 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
50 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
102 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], ...

1 2 3 4 5 53