الفرق بين المراجعتين لصفحة: «Kotlin/kotlin.text/MatchNamedGroupCollection/get»
لا ملخص تعديل |
لا ملخص تعديل |
||
سطر 8: | سطر 8: | ||
==القيمة المُعادة== | ==القيمة المُعادة== | ||
كائنا من النوع <code>[[Kotlin/kotlin.text/MatchResult/index|MatchGroup]]</code> أو <code>null</code>. | |||
==أنظر أيضًا== | ==أنظر أيضًا== | ||
* | * صفحة <code>[[Kotlin/kotlin.text/MatchGroup/index|MatchNamedGroupCollection]]</code>. | ||
* | * | ||
==مصادر== | ==مصادر== | ||
* [http://kotlinlang.org/api/latest/jvm/stdlib/kotlin.text/- | * [http://kotlinlang.org/api/latest/jvm/stdlib/kotlin.text/-match-named-group-collection/get.html الدالة MatchNamedGroupCollection.get() في التوثيق الرسميّ للمكتبة القياسيّة في لغة Kotlin.] | ||
[[تصنيف:Kotlin]] | [[تصنيف:Kotlin]] | ||
[[تصنيف:Kotlin Methods]] | [[تصنيف:Kotlin Methods]] |
مراجعة 14:02، 6 يوليو 2018
تعيد الدالةget()
كائنا من النوع MatchGroup
إن كانت المجموعة التي تحمل الإسم المُمرّر name
. مطابقَة، وإلا فستعيد null
.
البنية العامة
abstract operator fun get(name: String): MatchGroup?
ويُلاحظ وجود الكلمة المفتاحيّة operator للدلالة على أنّ هذا التابع مرتبطٌ بمعامل التكرار (iteration operator).
القيمة المُعادة
كائنا من النوع MatchGroup
أو null
.