正則表達式截取字符串

import java.util.regex.Matcher; import java.util.regex.Pattern; String regEx="<Body>.*?</Body>"; Pattern p=Pattern.compile(regEx); Matcher m=p.matcher(allMessage); boolean result=m.find(); S
相關文章
相關標籤/搜索