Last active
August 29, 2015 14:04
-
-
Save kraih/d98457537a07a46e753f to your computer and use it in GitHub Desktop.
Revisions
-
kraih revised this gist
Jul 15, 2014 . 4 changed files with 0 additions and 18 deletions.There are no files selected for viewing
File renamed without changes.File renamed without changes.This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,18 +0,0 @@ File renamed without changes. -
kraih revised this gist
Jul 15, 2014 . 1 changed file with 7 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ $ perl5.16 -Mre=debug -E 'my $x = "y"; "y" =~ /z$x/ for 1 .. 2' Compiling REx "zy" Final program: 1: EXACT <zy> (3) 3: END (0) anchored "zy" at 0 (checking anchored isall) minlen 2 Freeing REx: "zy" -
kraih revised this gist
Jul 15, 2014 . 3 changed files with 5 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,7 +3,7 @@ Compiling REx "y" Final program: 1: EXACT <y> (3) 3: END (0) anchored "y" at 0 (checking anchored isall) minlen 1 Matching REx "y" against "y" Intuit: trying to determine minimum start position... Found anchored substr "y" at offset 0... This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ $ perl5.20 -Mre=debug -E 'my $x = "y"; "y" =~ /z$x/o for 1 .. 2' Compiling REx "zy" Final program: 1: EXACT <zy> (3) 3: END (0) anchored "zy" at 0 (checking anchored isall) minlen 2 Freeing REx: "zy" This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,8 @@ $ perl5.20 -Mre=debug -E 'my $x = "y"; "y" =~ /z$x/ for 1 .. 2' Compiling REx "zy" Final program: 1: EXACT <zy> (3) 3: END (0) anchored "zy" at 0 (checking anchored isall) minlen 2 Compiling REx "zy" Freeing REx: "zy" -
kraih created this gist
Jul 15, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ $ perl5.20 -Mre=debug -E 'my $x = "y"; "y" =~ /$x/ for 1 .. 2' Compiling REx "y" Final program: 1: EXACT <y> (3) 3: END (0) anchored "y" at 0 (checking anchored isall) minlen 1 Matching REx "y" against "y" Intuit: trying to determine minimum start position... Found anchored substr "y" at offset 0... (multiline anchor test skipped) Intuit: Successfully guessed: match at offset 0 Compiling REx "y" Matching REx "y" against "y" Intuit: trying to determine minimum start position... Found anchored substr "y" at offset 0... (multiline anchor test skipped) Intuit: Successfully guessed: match at offset 0 Freeing REx: "y" This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ $ perl5.20 -Mre=debug -E 'my $x = "y"; "y" =~ /z$x/o' Compiling REx "zy" Final program: 1: EXACT <zy> (3) 3: END (0) anchored "zy" at 0 (checking anchored isall) minlen 2 Freeing REx: "zy" This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ $ perl5.20 -Mre=debug -E 'my $x = "y"; "y" =~ /z$x/ for 1 .. 2' Compiling REx "zy" Final program: 1: EXACT <zy> (3) 3: END (0) anchored "zy" at 0 (checking anchored isall) minlen 2 Compiling REx "zy" Freeing REx: "zy"