التابع String.end_with?
في روبي
يعيد التابع end_with?
ب
البنية العامة
end_with?([suffixes]+) → true or false
القيمة المعادة
يعاد
أمثلة
مثال على استخدام التابع end_with?
:
"hello".end_with?("ello") #=> true
# returns true if one of the +suffixes+ matches.
"hello".end_with?("heaven", "ello") #=> true
"hello".end_with?("heaven", "paradise") #=> false