in reply to Re: how to express $temp =~ s/.*?from://; in perl 4
in thread how to express $temp =~ s/.*?from://; in perl 4
There's no trivial way to say "a string of text that doesn't contain FROM" in Perl 4 regex. There are many wrong ways that people attempt. :)$text = "fanny farmer from: big sky";
-- Randal L. Schwartz, Perl hacker
|
|---|