带有示例的 Scala String split(String regex, int limit) 方法
split(String regex, int limit)方法与 split(String, regex) 方法相同,但这里唯一的区别是您可以限制结果数组中的元素数量。
Method Definition: String[] split(String regex, int limit)
Return Type: It returns a String array where, the number of elements in the Array are specified and the last element of the array is the part that is left in the stated string.
示例:1#
// Scala program of split()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying split method
val result = "PfsoQmsoRcsoGfGkso".split(".so", 3)
for ( m1 <-result )
{
// Displays output
println(m1)
}
}
}
输出:
P
Q
RcsoGfGkso
因此,这里我们在结果数组中有三个元素,最后一个元素包含字符串的剩余部分,该部分在拆分数组的第二个元素后留下。
示例:2#
// Scala program of split()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying split method
val result = "NidhifsoSinghmsoAcso".split(".so", 2)
for ( m1 <-result )
{
// Displays output
println(m1)
}
}
}
输出:
Nidhi
SinghmsoAcso