|
|
سطر 1: |
سطر 1: |
− | <noinclude>{{DISPLAYTITLE: التابع text.isLetterOrDigit() في لغة Kotlin}}</noinclude>
| + | #REDIRECT [[Kotlin/text/isLetterOrDigit]] |
− | تعيد الدالة <code>isLetterOrDigit()</code> القيمة <code>true</code> في حال كان [[Kotlin/Char/index|الحرف]] (character) الذي استٌدعيت عبره حرفًا أبجديًا أو رقمًا.
| |
− | == البنية العامة ==
| |
− | <syntaxhighlight lang="kotlin">
| |
− | inline fun Char.isLetterOrDigit(): Boolean
| |
− | | |
− | </syntaxhighlight>يُلاحَظ وجود الكلمة المفتاحية <code>inline</code> للدلالة على أن هذه الدالة مباشرة، وللمزيد من التفاصيل راجع <nowiki/>[[Kotlin/inline functions|توثيق الدوال المباشرة (inline functions)]].
| |
− | == القيم المعادة ==
| |
− | قيمة منطقية.
| |
− | | |
− | == أمثلة ==
| |
− | | |
− | === استخدام الدالة <code>isLetterOrDigit()</code> مع الحروف ===
| |
− | تُعرّف الشيفرة الآتية [[Kotlin/Char/index|حرفين]] <code>x</code> و <code>y</code> ثم تستدعي الدالة <code>isLetterOrDigit()</code> عبرهما، ثم تطبع الناتج:<syntaxhighlight lang="kotlin">
| |
− | fun main(args: Array<String>) {
| |
− | val x = '4'
| |
− | val y = '?'
| |
− |
| |
− | print(x.isLetterOrDigit()) // true
| |
− | print(y.isLetterOrDigit()) // false
| |
− | }
| |
− | </syntaxhighlight>
| |
− | == انظر أيضًا ==
| |
− | * <code>[[Kotlin/text/isIdentifierIgnorable|isIdentifierIgnorable()]]</code>: تعيد القيمة <code>true</code> في حال كان الحرف الذي استٌدعيت عبره يجب أن يُهمل في مُعرِّفات جافا (Java identifier) أو اليونيكود.
| |
− | * <code>[[Kotlin/text/isHighSurrogate|isHighSurrogate()]]</code>: تعيد القيمة <code>true</code> في حال كان الحرف الذي استٌدعيت عبره بديلًا علويًا لكود اليونيكود (Unicode high-surrogate code unit).
| |
− | * <code>[[Kotlin/text/isDefined|isDefined()]]</code>: تعيد القيمة <code>true</code> في حال كان الحرف (Unicode code point) الذي استٌدعيت عبره مُعرّفًا في اليونيكود (Unicode).
| |
− | | |
− | == مصادر ==
| |
− | * [https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.text/is-letter-or-digit.html صفحة الدالة isLetterOrDigit() في التوثيق الرسميّ للمكتبة القياسيّة في لغة Kotlin.]
| |
− | [[تصنيف:Kotlin]]
| |
− | [[تصنيف:Kotlin Method]]
| |