This is just the concept, not the code. It would make more sense for a large dictionary and a small paragraph. For example, if the dict hash has 100,000 entries, and the paragraph has 1000 words, you don't want to do 100,000 substitutions for the paragraph, or make a 100,000 word long regexp.

You want to use a hash solution, (which eliminates the possibility of ordering), here is one way to do it. When you see a three word pattern for your dictionary, like "aa bb cc" -> "xyz", make three entries

$dict{"aa bb cc"} = "xyz"; $cont{"aa bb"} = 1; $cont{"aa"} = 1;

Now when it comes time to translate, read the file word for word. If the next words are "pp qq rr ss...", look up $cont{"pp"} if it is =1, then look up $cont{"pp qq"}, addding words until you have a phrase that is not in %cont. Now look for this phrase in %dict, and if not found drop the rightmost word and retry.


In reply to Re: replace text using hash by b4swine
in thread replace text using hash by Anonymous Monk

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.