📜  Java中的模式 splitAsStream() 方法及示例

📅  最后修改于: 2022-05-13 01:55:05.303000             🧑  作者: Mango

Java中的模式 splitAsStream() 方法及示例

Pattern类的splitAsStream()方法用于从给定的输入序列中返回一个字符串流,作为参数传递给该模式的匹配项。此方法与方法 split 相同,只是我们返回的不是字符串数组对象,但一个流。如果此模式不匹配输入的任何子序列,则结果流只有一个元素,即字符串形式的输入序列。

句法:

public Stream splitAsStream(CharSequence input)

参数:此方法接受单个参数CharSequence ,它表示要拆分的字符序列。

返回值:此方法返回一个字符串流,该字符串流通过围绕该模式的匹配拆分输入来计算。

下面的程序说明了 splitAsStream() 方法:

方案一:

// Java program to demonstrate
// Pattern.splitAsStream(CharSequence input) method
  
import java.util.regex.*;
import java.util.stream.*;
public class GFG {
    public static void main(String[] args)
    {
        // create a REGEX String
        String REGEX = "geeks";
  
        // create the string
        // in which you want to search
        String actualString
            = "Welcome to geeks for geeks";
  
        // create a Pattern using REGEX
        Pattern pattern = Pattern.compile(REGEX);
  
        // split the text
        Stream stream
            = pattern
                  .splitAsStream(actualString);
  
        // print array
        stream.forEach(System.out::println);
    }
}
输出:
Welcome to 
 for

方案二:

// Java program to demonstrate
// Pattern.splitAsStream(CharSequence input) method
  
import java.util.regex.*;
import java.util.stream.*;
public class GFG {
    public static void main(String[] args)
    {
        // create a REGEX String
        String REGEX = "ee";
  
        // create the string
        // in which you want to search
        String actualString
            = "aaeebbeecceeddee";
  
        // create a Pattern using REGEX
        Pattern pattern = Pattern.compile(REGEX);
  
        // split the text
        Stream stream
            = pattern
                  .splitAsStream(actualString);
  
        // print array
        stream.forEach(System.out::println);
    }
}
输出:
aa
bb
cc
dd

参考: https: Java Java)