التابع String.tr
في روبي
يعيد التابع tr
ب
البنية العامة
tr(from_str, to_str) => new_str
القيمة المعادة
يعاد
أمثلة
مثال على استعمال التابع tr
:
"hello".tr('el', 'ip') #=> "hippo"
"hello".tr('aeiou', '*') #=> "h*ll*"
"hello".tr('aeiou', 'AA*') #=> "hAll*"