求助关于正则表达式的替换

wohuifude123 2013-03-13 03:11:50
<html>
<body>

<script type="text/javascript">

var str1 = /(\w+)\s*/gi,str2 = /\s*(\w*)\s*(\w*)\s*(\w*)/gi;


name = "Doe, Jo h n";

document.write(name.replace(str1,str2);

</script>

</body>
</html>

我想把这里的Doe, Jo h n换成 Jo h n,Doe

Jo h n格式不变,但是这个代码没有效果,求助。
...全文
134 5 打赏 收藏 转发到动态 举报
写回复
用AI写文章
5 条回复
切换为时间正序
请发表友善的回复…
发表回复
wohuifude123 2013-03-14
  • 打赏
  • 举报
回复
谢谢楼上的了
zyzy15 2013-03-14
  • 打赏
  • 举报
回复
非要用正则的话可以这样

	var name = "Doe, Jo   h   n";  
	document.write(name.replace(/([^\,]+)\,([^\,]+)/,"$2,$1")); 
zyzy15 2013-03-14
  • 打赏
  • 举报
回复
楼上代码稍作修改

	var name = "Doe, Jo   h   n";  
	document.write(name.split(",").reverse().join()); 
001007009 2013-03-13
  • 打赏
  • 举报
回复
<html>
<body>
 
<script type="text/javascript">
name = "Doe, Jo   h   n";
alert( name.split(',').reverse() )
</script>
 
</body>
</html>
wohuifude123 2013-03-13
  • 打赏
  • 举报
回复
又写了一次,发现依然没有得到想要的结果
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>

<script type="text/javascript">
var str1 = /(\w+)\s*/gi;
var str2 = /\s*(\w*)\s*(\w*)\s*(\w*)/gi;
var name = "Doe, Jo   h   n"; 
document.write(name.replace(str1,str2));
</script> 


</head>

<body>
</body>
</html>

87,907

社区成员

发帖
与我相关
我的任务
社区描述
Web 开发 JavaScript
社区管理员
  • JavaScript
  • 无·法
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧