摘要:
const text = <img src="xxx.xxx.xxx...; const RegEx = /(?<=(img src="))[^"]*?(?=")/gims; this.pictureUrlList = text.match(RegEx); 阅读全文
posted @ 2021-11-22 14:24
假装空白
阅读(1279)
评论(0)
推荐(0)
摘要:
import java.util.regex.Matcher; import java.util.regex.Pattern; public class RegexMatches { /** * 判断是否含有相同字符结尾 */ public static void main(String args[ 阅读全文
posted @ 2021-11-22 14:18
假装空白
阅读(514)
评论(0)
推荐(0)