التابع String.partition
في روبي
يعيد التابع partition
ب
البنية العامة
partition(sep) → [head, sep, tail]
partition(regexp) → [head, match, tail]
القيمة المعادة
يعاد
أمثلة
مثال على استعمال التابع partition
:
"hello".partition("l") #=> ["he", "l", "lo"]
"hello".partition("x") #=> ["hello", "", ""]
"hello".partition(/.l/) #=> ["h", "el", "lo"]