4
votes
3answers
59 views

is any of array items contained in a string

I have a keywords list and a blacklist. I want to delete all keywords that contain any of blacklist item. At the moment Im doing it this way: my @keywords = ( 'some good keyword', 'some other good ...
0
votes
2answers
48 views

Replacing many words in brackets with a new one

I have the following string : Cat dog (fox) catepillar bear foxy I need to replace "cat" and "fox" words from this sentence to word "animal" use warnings; use strict; # declare your vars with 'my' ...
2
votes
2answers
85 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 = ...
4
votes
2answers
80 views

Random sampling of non-overlapping substrings of length k

Given a string of length n, how would I (pseudo)randomly sample m substrings of size k such that none of the sampled substrings overlap? Most of my scripting experience is in Perl, but an easy-to-run ...
2
votes
2answers
46 views

what is the difference between the \L and the lc function in Perl?

What is the difference between \L and lc in Perl? Where are these two applicable?
-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
vote
2answers
55 views

Perl - Process string with IDs and corresponding values in quotation marks

I'm working on a Perl project where i have a lot of strings containing ids and corresponding values in quotation marks, seperated by semicolons. Example: main_id "1234567"; second_id "My_ID"; name ...
-3
votes
2answers
51 views

Perl - searching for partial matches in string array and returning matching indices

Suppose I have a string array @file_paths which contains @file_paths= ["C:\Lazy\FolderA\test.cpp", "C:\Lazy\FolderA\test2.cpp", "C:\Lazy\FolderB\test.cpp", ...
2
votes
1answer
60 views

Parsing Apache logs in Perl

UPDATED 5-10-2013 Okay, so now I can filter out the IP addresses with no problem. Now come the next three things I'd like to do which I thought could easily be done with sort($keys), but I was wrong ...
-1
votes
3answers
63 views

Perl string to telephone number

I'm attempting to take in a string such as "hi" and convert it to the corresponding numbers that one would need to type on a cellphone. So hi would be 44. I found a neat little javascript application ...
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 . ...
-1
votes
1answer
45 views

convert two chars at a time from a string to hex

I have the following piece of code which converts 1 char to a hex at a time. I want to convert two chars to a hex. ie 99ab should be treated as '99', 'ab' to be converted to its equivalent hex. ...
2
votes
3answers
61 views

Is there a way to get substring with start and end position in perl?

I know you can get a substring with substr but that's only with start position and length of substring. Is there another function that utilizes start and end position, or do I have to $length = ...
1
vote
1answer
60 views

perl split string using regex but join the delimiter to the output

I have a string like: za b c x y x z ya b c x y x z Now if I split as: my @lines = split /\n([a-z])/, $input; my @sorted_lines = sort @lines; The input line is split into three parts ...
8
votes
1answer
199 views

Evenly distribute repetitive strings

I need to distribute a set of repetitive strings as evenly as possible. Is there any way to do this better then simple shuffling using unsort? It can't do what I need. For example if the input is ...
-3
votes
2answers
49 views

How to check for a number in a string using perl

I have a string in a variable $vreponse and the string is int.force_snmp_version T_SIZE 3 All I want to do is verify if there is number 3 in the string. If the verification is success print a ...
0
votes
6answers
99 views

perl string manipulation

I have a file with lines like: analogy of dinner, 12312-12351, http://wwwdinner.com Sometimes the lines are like: eggs,bread,bacon:breakfast, 12312-1565A, http://wwwdinner.com I want to split ...
0
votes
1answer
46 views

Filtering empty strings in array from split in Perl?

I was originally puzzled by this: I was just working on a character splitting function in Perl, when I noticed this: DB<56> map(print("-", $_, "\n"), split( //, "test") ); -t -e -s -t ...
-1
votes
3answers
65 views

Perl: Transfer substring positions between two strings

I'm writing a Perl programm and I've got the following problem: I have a large list of start and end positions in a string. This positions correspond to substrings in this string. I now want to ...
-1
votes
1answer
85 views

compare string variables in perl

I have an if clause in perl, where as condition I need to compare two variables if they match as strings. But my code doesnt work and the strings never match: if(trim($file) eq trim($fields[0])) { ...
0
votes
2answers
44 views

Simultaneous subsitution in Perl

Below is a script where I am trying to reverse and then substitute (A=>T, T=>A, G=>C, C=>G). VERSION 1 #!/usr/bin/perl my $str="AAAAAGCTTGC"; $str_rev=scalar reverse ("$str"),"\n"; print"My ...
0
votes
1answer
107 views

concatenate strings

I have a big problem with my design of my algorith because i use large text file. I have a text file that contains sequences of words. eg my friends hello my friends the world and a second file is ...
0
votes
3answers
57 views

Can a var concatenated to a string be manipulated by reference

I need to initialize a string with a fixed text concatenated to a variable like this: my $id = 0; my $text ="This is an example, id: ".$id."\n"; Now, in a imaginay loop for 0->9, I want to ...
0
votes
3answers
49 views

how to extract string using regex

I have the following string: SL2.40ch12:53884872-53885197. I would like to assign SL2.40ch12 to $chromosome, 53884872 to $start and 53885197 to $end. What's an efficient way using regular expression ...
0
votes
2answers
82 views

Issues with Perl script and date concatenation removal/file rename

So, I am trying to rename excel files like "test_09182009.xlsx" to "test.xlsx" and would like to overwrite the file if it already exists. This was working for me on my local machine or so I thought ...
-1
votes
2answers
72 views

a simple string substitution does not work

Below is my codes: my $string1 = '<td><a href="http://www.aaa.com/downloads/details.aspx?FamilyID=a1b2c3">abcdefg</a><br />(123456)</td>'; my $string2 = ...
1
vote
1answer
103 views

Perl Inserting string into a url at specific places

I have the following piece of code: #!/usr/bin/perl use strict; use warnings; #use diagnostics; use URI qw( ); my @insert_words = qw(HELLO GOODBYE); while (<DATA>) { chomp; my $url ...
0
votes
0answers
34 views

perl guessing user input by resulted string

I use Net::VNC 0.40 for interacting with Xen guest machines. But I'm implementing some kind of automation and need to send some text input programmatically. For example I want to send clipboard ...
1
vote
1answer
124 views

Perl Regular expression to insert string at specific places

I have the following piece of code: #!/usr/bin/perl use strict; use warnings; use URI qw( ); my @insert_words = qw( HELLO ); while (<DATA>) { chomp; my $url = URI->new($_); my $path = ...
4
votes
5answers
187 views

What the heck is a Perl string anyway?

I can't find a basic description of how string data is stored in Perl! Its like all the documentation is assuming I already know this for some reason. I know about encode(), decode(), and I know I can ...
0
votes
3answers
152 views

Perl Regular Expression to insert/substitute in a string at specific places

Given a url the following regular expression is able insert/substitute in words at certain points in the urls. Code: #!/usr/bin/perl use strict; use warnings; #use diagnostics; my @insert_words = ...
0
votes
3answers
146 views

Regex to find strings containing at least two capitalized letters in perl

I am looking for a regular expression that matches a specific string which has at least two capitalized letter in perl. I am totally stuck any pointers in solving this will be appreciated.
-8
votes
2answers
83 views

Alternatives to “perl -e” command [closed]

I am using the "perl -e" command to produce string output file for instance: > perl -e 'print "A"x5' AAAAA Which are the alternatives to this command? Don't ask me why but I don't like this ...
1
vote
1answer
51 views

perl command error

I am using the information I found on this post Perl: add character to begin of a line to create this perl command (I need to add a |1 to the end of each string) perl -p -e 's/$/|1/' ...
2
votes
4answers
62 views

How can I convert two strings to a hash in perl?

i have two strings: my $wTime = "00:00-06:00 / 06:00-09:00 / 09:00-17:00 / 17:00-23:00 / 23:00-00:00"; my $wTemp = "17.0 °C / 21.0 °C / 17.0 °C / 21.0 °C / 17.0 °C"; I would like to join these ...
-3
votes
3answers
126 views

Perl Inserting a string from a file after every occurence of a slash in a url

I have the following URL's: FILE1.txt http://www.stackoveflow.com/dog/cat/rabbit/hamster/ 192.168.192.168/lion/tiger/elephant/ FILE2.txt HELLO GOODBYE The output I am trying to achieve: ...
0
votes
3answers
65 views

Perl regex: how to match strings that have a digit in between two nondigits?

How do I match strings of an array that has one or more digits in between two nondigits, and the string ends with a digit? Let's say I wanted to print out the strings that didn't match. How would I do ...
0
votes
1answer
51 views

extract more than one similar pattern string from one string using regex in perl

Need your help how to extract more than one similar string from one string using Regex in Perl This is source string : Sat Feb 16 23:56:30 ICT 2013 - wulan321~ sw dadan complain cant acces ...
0
votes
1answer
76 views

What is the third parameter to Text::JaroWinkler::strcmp95 for?

I am interested in the Jaro-Winkler module written in Perl to compute the distance (or similarity) between two strings: http://search.cpan.org/~scw/Text-JaroWinkler-0.1/JaroWinkler.pm The syntax of ...
-1
votes
4answers
153 views

Perl String Parsing to Hash

So lets say I had the string. $my str = "Hello how are you today. Oh thats good I'm glad you are happy. Thats wonderful; thats fantastic." I want to create a hash table where each key is a unique ...
2
votes
5answers
120 views

perl - cutting many strings with given array of numbers

dear my fellow perl masters in the world~! I need your help. I have a string file A and a number file B like this: File A: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB ...
0
votes
3answers
75 views

How to split the string and retrieve last two columns in perl

i want to retrive the last two columns of a string ex $path = C:\Documents and Settings\ac62599\AC62599_SBI_Release_2012.12.1_int\vob\SBI_src $path = C:\views\ac62599\AC62599_view\vob\aims output ...
4
votes
2answers
128 views

Case-insenstive ordered word search via regular expression

I just started off with regular expression in perl. After playing around through various online tutorials, I wanted a write a regular expression that matches order specified case insensitive word ...
0
votes
2answers
128 views

Perl Text::CSV_XS read from string

How to I use the Text::CSV_XS module to read its input from a CSV string. Then only information I can find documented is reading from a file. Would the fastest way to do it be splitting up the CSV ...
0
votes
0answers
33 views

Perl: Comparing two text files [duplicate]

I have two text files both with a list of company names. One of the text files contains all company names while the other file contains only a few of the company names e.g: All-Companies.txt a b c d ...
0
votes
2answers
52 views

string alignment in perl / match alignment

I have two strings $dna1 and $dna2. Print the two strings as concatenated, and then print the second string lined up over its copy at the end of the concatenated strings. For example, if the input ...
1
vote
1answer
88 views

Extracting text between a start and end point in perl

I'm not used to perl at all and having issues with the syntax. How would I return "brown" in the following? From what I'm reading, this should work.. my $text = "the quick brown dog"; print ...
-1
votes
1answer
79 views

using ternary operator while printing in perl

Here is my code: for($i=1;$i<=100;$i++){ if($i%15==0) print "Divisible by 15"; else if($i%5==0) print "Divisible by 5"; else print ($i%3==0)? "Divisible by 3":$i; print "\n"; } Its ...
1
vote
6answers
170 views

Check if string is subset of a bunch of characters? (RegEx)?

I have a little problem, I have 8 characters, for example "a b c d a e f g", and a list of words, for example: mom, dad, bad, fag, abac How can I check if I can or cannot compose these words with the ...
1
vote
3answers
388 views

Perl string matching

I am facing problems with Perl string matching/searching using both, index as well as the =~ operator. I need to search for the string "RT @zaynmalik: Big cover for @cosmopolitanuk ! Boys looking ...

1 2 3 4 5 9