字符\0xhh 与具有十六进制值0xhh的字符匹配。
以下示例显示了字符匹配的用法。
package com.learnfk; import java.util.regex.Matcher; import java.util.regex.Pattern; public class CharactersDemo { private static final String REGEX = "\\x41"; private static final String INPUT = "abcAabc"; public static void main(String[] args) { //create a pattern Pattern pattern = Pattern.compile(REGEX); //get a matcher object Matcher matcher = pattern.matcher(INPUT); if(matcher.find()) { //Prints the start index of the match. System.out.println("Match String start(): "+matcher.start()); } } }
让我们编译并运行以上程序,这将产生以下输出-
Match String start(): 3
Java 正则 中的 characters \xhh 匹配 - 无涯教程网无涯教程网提供字符-0xhh 与具有十六进制值0xhh的字符匹配。以下示例显示了字符匹配的用法。 package...https://www.learnfk.com/javaregex/javaregex-characters-hexa-xhh.html
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/bian-cheng-ji-chu/105367.html