Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am learning regular expression in perl, and i would like to have a function similar as bellow:

sub RegEx() 
{
  my $T = "0,1,";
  my $T2 = "-0:0-0:1-0:2-0:3-0:4-1:0-1:1-1:2-1:3-";

  printf ("T= %s <br>", $T);
  printf ("T2 %s <br>", $T2);

  my @values = split(',', $T);
  foreach my $val (@values) {
         printf ("We are at item %s in T <br>", $val);
         my $temp = $val .":" . "\(\\d\)\+";
         printf ("Rexeg %s <br>",$temp);
         @result = split(/$temp/, $T2);
         foreach my $val2 (@result) {
                printf ("T2- %s <br>", $val2);
         }
   }
}

and have the value of $T2 parsed to an array based on an index ($T)

but The following is being displayed

T= 0,1 
T2 -0:0-0:1-0:2-0:3-0:4-1:0-1:1-1:2-1:3- 
We are at item 0 in T 
Rexeg 0:(\d)+ 
T2- - 
T2- 0 
T2- - 
T2- 1 
T2- - 
T2- 2 
T2- - 
T2- 3 
T2- - 
T2- 4 
T2- -1:0-1:1-1:2-1:3- 
We are at item 1 in T 
Rexeg 1:(\d)+ 
T2- -0:0-0:1-0:2-0:3-0:4- 
T2- 0 
T2- - 
T2- 1 
T2- - 
T2- 2 
T2- - 
T2- 3 
T2- - 

Kindly let me know why i am still seeing

  1. T2- -0:0-0:1-0:2-0:3-0:4- when the regular expression is 1:(\d)+

  2. "-"

as the output of @results?

share|improve this question
You shouldn't put () in the declaration of a sub. – justintime Oct 30 '12 at 3:45

2 Answers

up vote 2 down vote accepted

split makes no sense. You don't want to split a string. You want:

my @result = $T2 =~ /$temp/g;

You really should include the "-" in your pattern. (Consider what happens when the numbers get to 10.)

my @result = $T2 =~ /-\Q$val\E:(\d+)/g;

(\Q..\E is technically no needed if $val is always going to be digits, but it's a good habit.)

That said, I'd probably just parse $T2 once.

my $T2 = "-0:0-0:1-0:2-0:3-0:4-1:0-1:1-1:2-1:3-";
my %T2; push @{ $T2{$1} }, $2 while $T2 =~ /-(\d+):(\d+)/g;
...
my @result = @{ $T2{$val} };
share|improve this answer
Thank you, however - using my @result = $T2 =~ /-\Q$val\E:(\d+)/; i get T= 0,1, T2 -0:0-0:1-0:2-0:3-0:4-1:0-1:1-1:2-1:3- We are at item 0 in T Rexeg 0:(\d)+- T2- 0 We are at item 1 in T Rexeg 1:(\d)+- T2- 0 – Vihtorr Oct 29 '12 at 21:58
(\d)+ with match the 10 regexpal.com – Vihtorr Oct 29 '12 at 21:59
@Vihtorr, I left out /g. Fixed. – ikegami Oct 29 '12 at 22:01
ikegami, thank you that works! – Vihtorr Oct 29 '12 at 22:13
  1. You split on 1:(\d)+. What is on the left of the first matching element ? The string you wrote.

  2. You split on 1:(\d)+. What is between two matches of this regex ? Dashes.

You split on 1:(\d)+. This means, you cut you string into parts, and use the result of the regex as a separator. Globbing using () the integer makes it appear in the global result as a regex match.

Now, you can explain us what you want to achieve, and then we may be able to help you correct yourself one this one.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.