php's strtr for python

后端 未结 5 949
遇见更好的自我
遇见更好的自我 2020-12-06 18:39

php has the strtr function:

strtr(\'aa-bb-cc\', array(\'aa\' => \'bbz\', \'bb\' => \'x\', \'cc\' => \'y\'));
# bbz-x-y

It replace

5条回答
提交回复
热议问题