I didn't quite understand what you meant when you were talking about vowels, can vowels not be mapped directly using the dny = #225 style? anyways, here is some code which might do what you want, but depending on what you want to do with the vowels, it might not be exactly what you want.

%letters = ('dny' => '#225', 'kh' => '#35', 'k' => '#12', 'h' => '#10', 'a' => '#8', 't' => '#7', 'o' => '#6', 's' => '#5'); $string = 'khatos'; #if you ever want to match more than 3 characters #then change the 3 below to whatever number #you want. while($string =~ s/([a-zA-Z]{1,3})/&roman($1)/e) {} print "$string\n"; sub roman { my $letter = shift; my $remainder; while(length($letter) > 0) { if(exists($letters{$letter})) { return $letters{$letter}.$remainder; } $remainder = chop($letter).$remainder; } #if the character isn't found in %letters it #will return '#?', if you return an alphabetic #character which isn't in %letters then the #program will loop forever. return '#?'; }

In reply to Re: How can I transliterate between languages? by nardo
in thread How can I transliterate between languages? 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.