|
|
سطر 1: |
سطر 1: |
| <noinclude>{{DISPLAYTITLE: التابع text.isLetter() في لغة Kotlin}}</noinclude>
| | #REDIRECT [[Kotlin/text/isLetter]] |
| تعيد الدالة <code>isLetter()</code> القيمة <code>true</code> في حال كان [[Kotlin/Char/index|الحرف]] (character) الذي استٌدعيت عبره حرف أبجديًا.
| |
| == البنية العامة ==
| |
| <syntaxhighlight lang="kotlin">
| |
| inline fun Char.isLetter(): Boolean
| |
| | |
| </syntaxhighlight>يُلاحَظ وجود الكلمة المفتاحية <code>inline</code> للدلالة على أن هذه الدالة مباشرة، وللمزيد من التفاصيل راجع <nowiki/>[[Kotlin/inline functions|توثيق الدوال المباشرة (inline functions)]].
| |
| == القيم المعادة ==
| |
| قيمة منطقية.
| |
| | |
| == أمثلة ==
| |
| | |
| === استخدام الدالة <code>isLetter()</code> مع الحروف ===
| |
| تُعرّف الشيفرة الآتية [[Kotlin/Char/index|حرفين]] <code>x</code> و <code>y</code> ثم تستدعي الدالة <code>isLetter()</code> عبرهما، ثم تطبع الناتج:<syntaxhighlight lang="kotlin">
| |
| fun main(args: Array<String>) {
| |
| val x = 'a'
| |
| val y = '9'
| |
|
| |
| print(x.isLetter()) // true
| |
| print(y.isLetter()) // 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.html صفحة الدالة isLetter() في التوثيق الرسميّ للمكتبة القياسيّة في لغة Kotlin.]
| |
| [[تصنيف:Kotlin]]
| |
| [[تصنيف:Kotlin Method]]
| |