isUnicodeIdentifierPart()方法用于查找指定字符是否是第一个字符以外的Unicode标识符的一部分。例如:一个数字,一个字母,一个组合标记,一个连接的标点符号(例如“ _”),一个数字字母(例如一个罗马数字字符)和一个非空格标记。
函数定义: def isUnicodeIdentifierPart: Boolean
返回类型: It returns true if the stated character is part of a Unicode identifier else it returns false.
示例:1#
// Scala program of isUnicodeIdentifierPart()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying isUnicodeIdentifierPart() method
val result = ('7').isUnicodeIdentifierPart
// Displays output
println(result)
}
}
输出:
true
示例:2#
// Scala program of isUnicodeIdentifierPart()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying isUnicodeIdentifierPart() method
val result = ('_').isUnicodeIdentifierPart
// Displays output
println(result)
}
}
输出:
true
相关用法
注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Scala Char isUnicodeIdentifierPart() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。