嗨我无法从字符串行
获得特定单词 String text = "[1;24r[24;1H[24;1H[2K[24;1H[?25h[24;1H[24;1HProcurve-1# [24;1H[24;13H[24;1H[?25h[24;13H";
上面提到String我只想要
的Procurve-1#
。 使用正则表达式模式如何获得它。
由于 桑杰
答案 0 :(得分:1)
Pattern regex = Pattern.compile("(Procurve-1#)", Pattern.CASE_INSENSITIVE);
Matcher regexMatcher = regex.matcher(subjectString);
if (regexMatcher.find()) {
ResultString = regexMatcher.group(1)
}