Ruby/String/tr
Материал из Wiki.crossplatform.ru
Версия от 17:55, 13 сентября 2010; ViGOur (Обсуждение | вклад)
Translation from one set of characters to another
puts "hello".tr("aeiou", "AEIOU") # => "hEllO": capitalize vowels. Also tr! puts "hello".tr("aeiou", " ") # => "h ll ": convert vowels to spaces
tr method from string
"LOWERCASE ALL VOWELS".tr("AEIOU", "aeiou")