Java Scanner findInLine() 方法
示例
在文本行中查找电子邮件地址
// Create a scanner object
Scanner myObj = new Scanner("Please send an email to [email protected] for more details.");
// Get the email address with a pattern
String email = myObj.findInLine("[a-zA-Z]+@[a-zA-Z]+.[a-zA-Z]{2,}");
// Show the email if found
if (email != null) {
System.out.println(email);
} else {
System.out.println("No email found");
}
// Close the scanner
myObj.close();
定义和用法
The findInLine()
方法在扫描器中搜索到下一个换行符,以查找由 Pattern
对象或字符串提供的正则表达式的第一个匹配项。 如果未找到匹配项,则返回 null
。
如果找到匹配项,扫描器将前进到匹配项后的第一个字符。
了解更多关于我们在 Java RegEx 教程 中的正则表达式。
语法
以下之一
public String findInLine(Pattern pattern)
public String findInLine(String pattern)
参数值
参数 | 描述 |
---|---|
pattern | 必填。字符串或 Pattern 对象。指定搜索中使用的正则表达式。 |
技术细节
返回 | 包含匹配文本的 String 或如果未找到匹配项则为 null 。 |
---|---|
抛出 | IllegalStateException - 如果扫描器已关闭。 |