当前位置: 代码迷 >> HTML/CSS >> 正则表达式html,java不包孕
  详细解决方案

正则表达式html,java不包孕

热度:120   发布时间:2012-11-07 09:56:10.0
正则表达式html,java不包含

测试不包含某字符串

1、html 实现

<script>
function aa(str){
?var patten = /^((?!contextPath)\w)*$/;
?if(patten.test(str.value)){
??alert("不包含");
?}else{
??alert("包含");}
}
</script>
?<body>
<input? type="text" name="s" value="" onblur="aa(this)">
?</body>

?

?2、java 实现

System.out.println("请输一个字符串");
??Scanner input = new Scanner(System.in);
??String str=input.nextLine();;
??String s = "^.*[^contextPath].*$";
??Pattern p=Pattern.compile(s);
??Matcher m=p.matcher(str);
??if(m.matches()){
???System.out.print("不包含");
??}else
???System.out.print("包含");
???
??}

  相关解决方案