التابع String.upto
في روبي
يعيد التابع upto
ب
البنية العامة
upto(other_str, exclusive=false) {|s| block } → str
upto(other_str, exclusive=false) → an_enumerator
القيمة المعادة
يعاد
أمثلة
مثال على استعمال التابع upto
:
"a8".upto("b6") {|s| print s, ' ' }
for s in "a8".."b6"
print s, ' '
end