Ask a Question related to PERL Modules, Design and Development.
-
jeremyje@gmail.com #1
Regular Expression Generator
Is there a library or a way to generate an appropriate regular
expression for any given input string?
(remove quotes for examples)
For example: "1234567890abcdef is in hex9"
Regex Generator returns: [0-9|A-F]{16} [a-z]{2} [a-z]{2} [0-9|a-z]{3}
Or anything that does some sort of similar processing?
jeremyje@gmail.com Guest
-
Regular Expression - Need Help
Hi, I have the following: <cfset input =" Origin: cohnok-530a (190.068.59.250) Type: ... -
Regular expression bug?
All of CF's RE functions act in a weird way, contrary to the documentation (both CF's own, and the underlying Java Regex docs). The special... -
regular expression - help
can anyone translate this into plain english? preg_match_all("/(\w+)+/U", $text, $words); -
regular expression help..
On Thu, 28 Aug 2003 15:50:49 +0200 "point" <point@caanNOSPAMproduction.com> wrote: Don't cross post, it's considered bad form. /^-+$/ ... -
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... -
Ted Zlatanov #2
Re: Regular Expression Generator
On 26 Jun 2006, [email]jeremyje@gmail.com[/email] wrote:
I only know of this one:> Is there a library or a way to generate an appropriate regular
> expression for any given input string?
> (remove quotes for examples)
> For example: "1234567890abcdef is in hex9"
> Regex Generator returns: [0-9|A-F]{16} [a-z]{2} [a-z]{2} [0-9|a-z]{3}
>
> Or anything that does some sort of similar processing?
[url]http://search.cpan.org/~dankogai/Regexp-Optimizer-0.15/lib/Regexp/Optimizer.pm[/url]
Emacs also has a regexp-opt function you may find interesting (as an
alternate approach in a different language).
Ted
Ted Zlatanov Guest



Reply With Quote

