It's hard to just "group" together regexes into one regex, unless you make a "dispatch table".
s/([b-zA-Z]):/\1/g; s/[aV] /A /g; s/a: /A: /g; s/2:/2 %/g; s/9|3:/&/g; s/([aeO])I/\1j/g; tr/QRC@6{/Orx**E/; my %trans; $trans{"$_:"} = $_ for 'b' .. 'z', 'A' .. 'Z'; $trans{"$_ "} = "A " for 'a', 'V'; $trans{"a: "} = "A: "; $trans{"2:"} = "2 %"; $trans{$_} = "&" for 9, '3:'; $trans{"${_}I"} = "${_}j" for 'a', 'e', 'O'; my $regex = join '|', map quotemeta($_), keys %trans; ### WARNING -- this does not allow for nested ### translations (like (A => 'BC', B => 'D') on ### the string "A" will yield "BC", not "DC") $string =~ s/($regex)/$trans{$1}/g; $string =~ tr/QRC@6{/Orx**E/;


japhy -- Perl and Regex Hacker

In reply to Re: Concatenating regexs? by japhy
in thread Concatenating regexs? by Micz

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.