Java中用正则表达式对于输入数据的匹配和解析,求助!

publicclassLocation{inti;intj;publicLocation(){}publicLocation(inti,intj){this.i=i;th... public class Location {
int i;
int j;

public Location() {
}

public Location(int i, int j) {
this.i = i;
this.j = j;
}

public String toString() {
return "i:" + i + ", j:" + j;
}
}

import java.util.Scanner;

public class RegDemo {

public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
Location l = read("2 3");
System.out.println(l);
}

//输入:2,3 或者2 3 输出i:2,j:3
public static Location read(String str) {

return null;
}
}
展开
 我来答
084kwxr08
2011-06-30 · TA获得超过220个赞
知道答主
回答量:458
采纳率:0%
帮助的人:262万
展开全部
我这样写都可以啊,用IE6,FIREFOX 3.0 都试过了,没问题。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<META NAME="Generator" CONTENT="EditPlus">
<META NAME="Author" CONTENT="">
<META NAME="Keywords" CONTENT="">
<META NAME="Description" CONTENT="">
</HEAD>

<BODY>
Xhtml Linux
</BODY>
<script language="JavaScript">
document.body.innerHTML = document.body.innerHTML.replace(/(x)|(l)/gi,"<font color=red>$1$2</font>");
</script>
</HTML>

以下是通过FIREFOX 3.0 得到的BODY的innerHTM
<font color="red">X</font>htm<font color="red">l</font> <font color="red">L</font>inu<font color="red">x</font>
<script><font color=red>l</font>anguage="JavaScript">
document.body.innerHTM<font color=red>L</font> = document.body.innerHTM<font color=red>L</font>.rep<font color=red>l</font>ace(/(<font color=red>x</font>)|(<font color=red>l</font>)/gi,"<font co<font color=red>l</font>or=red>$1$2</font>");
</script>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2011-07-01
展开全部
public static Location read(String str){
if(str!=null && str.trim().match("^(-|+)?\\d+\\s*(,|\\s)\\s*\\(-|+)?d+$")){
String[] ss = str.trim().split(",");
if(ss.length>1){
int i = Integer.parseInt(ss[0].trim());
int j = Integer.parseInt(ss[1].trim());
return new Location(i,j);
}else{
ss = str.trim().split("\\s+");
int i = Integer.parseInt(ss[0].trim());
int j = Integer.parseInt(ss[1].trim());
return new Location(i,j);
}
}else{
return null;
}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式