Regular Expression Generator

Ask a Question related to PERL Modules, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. Regular Expression - Need Help
      Hi, I have the following: <cfset input =" Origin: cohnok-530a (190.068.59.250) Type: ...
    2. 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...
    3. regular expression - help
      can anyone translate this into plain english? preg_match_all("/(\w+)+/U", $text, $words);
    4. 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. /^-+$/ ...
    5. 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...
  3. #2

    Default Re: Regular Expression Generator

    On 26 Jun 2006, [email]jeremyje@gmail.com[/email] wrote:
    > 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?
    I only know of this one:

    [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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139