Java Scanner findLine()方法

java.util.Scanner.findInLine(String pattern) 方法试图找到从指定字符串构造的模式在未来发生,在忽略分隔符。

1 语法

public String findInLine(String pattern)

2 参数

pattern:一个字符串,指定要搜索的模式

3 返回值

此方法返回匹配指定模式的文本。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.Scanner.findInLine(String pattern)方法的例子
 */
import java.util.*;

public class Demo {
    public static void main(String[] args) {

        String s = "Hello World! 3 + 3.0 = 6";

        // create a new scanner with the specified String Object
        Scanner scanner = new Scanner(s);

        // find a string "World"
        System.out.println("" + scanner.findInLine("World"));

        // print the rest of the string
        System.out.println("" + scanner.nextLine());

        // close the scanner
        scanner.close();
    }
}

输出结果为:

World
! 3 + 3.0 = 6

热门文章

优秀文章