Java Scanner findWithinHorizaon()方法

java.util.Scanner.findWithinHorizon(String pattern,int horizon) 方法试图找到从指定字符串构造的模式在未来发生,在忽略分隔符。的形式findWithinHorizon(pattern)这种方法的调用完全相同的行为方式的调用findWithinHorizon(Pattern.compile(pattern, horizon))。

1 语法

public String findWithinHorizon(String pattern,int horizon)

2 参数

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

3 返回值

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

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.Scanner.findWithinHorizon(String pattern,int horizon)方法的例子
 */
import java.util.*;
import java.util.regex.Pattern;

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 of world, with horizon of 10
        System.out.println("" + scanner.findWithinHorizon("World", 10));

        // find a string of world, with horizon of 20
        System.out.println("" + scanner.findWithinHorizon("World", 20));

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

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

输出结果为:

null
World
! 3 + 3.0 = 6

热门文章

优秀文章