的Android与正则表达式
取代我在Android的字符串。我想用一些html来包装所有4个或更多连续数字的实例。我想这将用正则表达式来完成,但我很难获得最基本的正则表达式。的Android与正则表达式
有人可以帮助我吗?
我想改变:
var input = "My phone is 1234567890 and my office is 7894561230";
要
var output = "My phone is <u>1234567890</u> and my office is <u>7894561230</u>";
回答:
这将做到这一点:
String input = "My phone is 1234567890 and my office is 7894561230"; String regex = "\\d{4,}";
String output = input.replaceAll(regex, "<u>$0</u>");
System.out.println(output);
以上是 的Android与正则表达式 的全部内容, 来源链接: utcz.com/qa/260910.html