码迷,mamicode.com
首页 > 编程语言 > 详细

javascript对象Math和正则对象

时间:2020-01-29 19:44:18      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:pow   对象   spl   exp   模式   random   oct   dtd   doc   

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>正则对象</title>
</head>
<body>
<script>
//1.匹配方式一
// var re_obj=new RegExp(‘\d+‘,‘g‘);//g 为一种全局模式
// alert(re_obj.test(‘dajsasj5613ss‘));//true
//2.匹配方式二
// var re_obj=/\d+/g;
// alert(re_obj.test(‘sddhdj852sss51‘));//true
//3.取出匹配的内容
var reg=‘asdfltxstar1997xing315‘
// alert(reg.match(/\d/g));//1,9,9,7,3,1,5 取出所有匹配的内容放到数组里
// alert(reg.match(/\d+/g));//1997,315
// alert(reg.search(/\d+/g));//11 取出第一个结果的索引值
// alert(reg.split(/\d+/g));//asdfltxstar,xing,
alert(reg.replace(/\d+/g,‘*‘));//asdfltxstar*xing*
// ------------------------------------------------------
//Math对象
// alert(Math.random())//(0,1)
// alert(Math.round(2.6))//3
alert(Math.pow(2,4))//16


</script>

</body>
</html>

javascript对象Math和正则对象

标签:pow   对象   spl   exp   模式   random   oct   dtd   doc   

原文地址:https://www.cnblogs.com/startl/p/12240985.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!