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