java正则表达式怎么写

1. java正则表达式要怎么写 import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class PatternDemo {
/**
* @param args
*/
public static void main(String[] args) {
String str = ",a b c,a,c";
Pattern pattern = Pattern.compile("a[^,]*c");
Matcher matcher = pattern.matcher(str);
while(matcher.find()){
System.out.println(matcher.group());
}
}
}
2. 怎么在java代码中写正则表达式 正则表达式一般都用在WEB页面JSP文件中 。
一般用于表单验证,在JS代码中使用 。示例:说明上例中 var reg = /^([a-zA-Z])|([\u0391-\uFFE5]+)|([0-9])|[-,_,\s]$/;这句就是用的正则表达式 。
3. java中正则表达式的写法 加个 Pattern.DOTALL 参数就行了
给你个例子
public static void main(String[] args) throws Exception {
Matcher matcher = Pattern.compile("(.*)", Pattern.DOTALL).matcher("asdf\naasdf");
matcher.find();
System.out.println(matcher.group(1));
}
4. java中的正则表达式怎么写一个标签 public class Egg
{
public static void main(String[] args)
{
String html = "我想一只小小小小鸟
想要飞却飞呀飞不高~
我寻寻觅觅寻寻觅觅";
String regex = "(?i)
]*>";
html = html.replaceAll(regex, "
");
System.out.println(html);
}
}
【java正则表达式怎么写】

java正则表达式怎么写

文章插图