Regular expression examples: Difference between revisions

Content deleted Content added
-Barry- (talk | contribs)
Shortened a table cell that was way too long for such a narrow column in IE and Firefox, and too detailed for a chart. Not sure if effect of modifiers should be mentioned, but I didn't.
-Barry- (talk | contribs)
Fixed last example
Line 282:
$string1 = "Hello World\n";
if ($string1 =~ m/[^abc]/) {
print "$string1 doescontains nota containcharacter the charactersother than";
print "a, b, and c\n";
}