Ask a Question related to PERL Beginners, Design and Development.
-
Michel #1
Perl regular expression
Need a pattern to find string and words between braquets
[abcdefg]
???
Michel Guest
-
Regular Expression - Need Help
Hi, I have the following: <cfset input =" Origin: cohnok-530a (190.068.59.250) Type: ... -
regular expression - help
can anyone translate this into plain english? preg_match_all("/(\w+)+/U", $text, $words); -
Perl regular expression does not work on 5.8.0
Good afternoon, we have a perl regular expression which always worked for us on Solaris(SPARC) HPUX(IA64) and Debian GNU/Linux(i386). But now I... -
Perl program need in regular expression
I want a program can read a log file and capture the character seg=9543 The file log line like this ... -
Regular Expression....?
Hi I am looking for the regular expression for validating the allowed file types to upload like files like "zip,pdf,doc,rtf,gif,jpg,png,txt"; and... -
mkarlow #2
Re: Perl regular expression
How about
$str_w_brackets =~ /\[(\w*?)\]/ ;
my $word = $1 ;
"Michel" <mikechico75@hotmail.com> wrote in message
news:81644a0f.0401291422.620bea89@posting.google.c om...> Need a pattern to find string and words between braquets
> [abcdefg]
> ???
mkarlow Guest



Reply With Quote

