I need a function to replace each letter from a word with other letters. For example:

a = tu
b = mo
c = jo

If I write "abc", I want to get "tumoji", if I write "bca" I want to get "mojotu", etc.

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted
$from = array('a',
              'b', 
              'c'
             );
$to = array('tu',
            'mo', 
            'jo'
           );
$original = 'cab';
$new = strtr($original,$from,$to);

or

$replacements = array('a' => 'tu',
                      'b' => 'mo', 
                      'c' => 'jo'
                     );
$original = 'cab';
$new = strtr($original,$replacements);

or

$replacements = array('a' => 'tu',
                      'b' => 'mo', 
                      'c' => 'jo'
                     );
$original = 'cab';
$new = '';
foreach(str_split($original) as $letter) {
    $new .= $replacements[$letter];
}
link|improve this answer
Are you sure that is correct use of strtr() in your first example? – alex Jan 1 at 13:21
@alex - already fixed – Mark Baker Jan 1 at 13:22
Should you be passing array_combine($from, $to) ? – alex Jan 1 at 13:23
@alex - both from/to and replacements are valid syntax, and certainly a from/to set of arrays could be combined to give a replacements array... probably best to define as an associative replacements array in the first place though – Mark Baker Jan 1 at 13:29
feedback

Use strtr().

$str = strtr($str, array('a' => 'tu' /*, ... */));
link|improve this answer
feedback
str_replace("a","tu",$string);

Like this you can do..Or preg_replace can be used..

link|improve this answer
3  
can be problematic when you have many replacements to make, and subsequent translations are for a letter that has already been included in a "to"... that's why strtr should be used when you're doing a lot of replacements of this kind – Mark Baker Jan 1 at 13:24
I agree..to have multiple replacements preg_replace or strstr are the good choices but as in this case there were only 3 so I wrote str_replace or for more advanced preg_replace...Syntex for preg_replace.. $string = 'I am rajat singhal, who are you.'; $patterns = array(); $patterns[0] = '/I/'; $patterns[1] = '/rajat/'; $patterns[2] = '/who/'; $replacements = array(); $replacements[2] = 'bee'; $replacements[1] = 'black'; $replacements[0] = 'singhak'; echo preg_replace($patterns, $replacements, $string); ?> – Rajat Singhal Jan 1 at 13:50
The advantage of preg_replace over strstr are quite obvious I guess...you can replace by regular expressions...Hence I suggested preg_replace... – Rajat Singhal Jan 1 at 13:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.