鱼C论坛

 找回密码
 立即注册
查看: 3194|回复: 7

[已解决]电话号码验证小程序设计

[复制链接]
发表于 2022-3-14 15:10:15 From FishC Mobile | 显示全部楼层 |阅读模式
10鱼币
这个电话号码的约束条件怎么设计呀?
最佳答案
2022-3-14 15:10:16
上面的正则表达式不对
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
</head>
<body>

<script>
var str = "1234-12345678";
var patt1 = /^(\d{4}-)?\d{8}$/;
document.write(str.match(patt1));
</script>
        <br>
<script>
var str = "123-12345678";
var patt1 = /^(\d{4}-)?\d{8}$/;
document.write(str.match(patt1));
</script>
        <br>
<script>
var str = "-12345678";
var patt1 = /^(\d{4}-)?\d{8}$/;
document.write(str.match(patt1));
</script>
        <br>
<script>
var str = "012345678";
var patt1 = /^(\d{4}-)?\d{8}$/;
document.write(str.match(patt1));
</script>
        <br>
<script>
var str = "0-12345678";
var patt1 = /^(\d{4}-)?\d{8}$/;
document.write(str.match(patt1));
</script>
        <br>
<script>
var str = "12345678";
var patt1 = /^(\d{4}-)?\d{8}$/;
document.write(str.match(patt1));
</script>
        <br>
<script>
var str = "12345678-";
var patt1 = /^(\d{4}-)?\d{8}$/;
document.write(str.match(patt1));
</script>
        <br>
<script>
var str = "1234567a";
var patt1 = /^(\d{4}-)?\d{8}$/;
document.write(str.match(patt1));
</script>
</body>
</html>
1234-12345678,1234-
null
null
null
null
12345678,
null
null 
Screenshot_20220314-145703_WPS Office.jpg
Screenshot_20220314-145916_WPS Office.jpg

最佳答案

查看完整内容

上面的正则表达式不对
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-3-14 15:10:16 | 显示全部楼层    本楼为最佳答案   
上面的正则表达式不对
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
</head>
<body>

<script>
var str = "1234-12345678";
var patt1 = /^(\d{4}-)?\d{8}$/;
document.write(str.match(patt1));
</script>
        <br>
<script>
var str = "123-12345678";
var patt1 = /^(\d{4}-)?\d{8}$/;
document.write(str.match(patt1));
</script>
        <br>
<script>
var str = "-12345678";
var patt1 = /^(\d{4}-)?\d{8}$/;
document.write(str.match(patt1));
</script>
        <br>
<script>
var str = "012345678";
var patt1 = /^(\d{4}-)?\d{8}$/;
document.write(str.match(patt1));
</script>
        <br>
<script>
var str = "0-12345678";
var patt1 = /^(\d{4}-)?\d{8}$/;
document.write(str.match(patt1));
</script>
        <br>
<script>
var str = "12345678";
var patt1 = /^(\d{4}-)?\d{8}$/;
document.write(str.match(patt1));
</script>
        <br>
<script>
var str = "12345678-";
var patt1 = /^(\d{4}-)?\d{8}$/;
document.write(str.match(patt1));
</script>
        <br>
<script>
var str = "1234567a";
var patt1 = /^(\d{4}-)?\d{8}$/;
document.write(str.match(patt1));
</script>
</body>
</html>
1234-12345678,1234-
null
null
null
null
12345678,
null
null 
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-3-14 16:42:20 From FishC Mobile | 显示全部楼层
就按照他的要求整呗
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-3-14 18:27:49 | 显示全部楼层
可以用正则表达式
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-3-15 20:13:15 | 显示全部楼层
indexOf方法来判断有没有连接符 phone.indexOf('-'),如果结果大于-1则表示有连接符 '-' ,
之后用phone.split('-'),拆成一个数组,用正则判断数组第0项是不是对应区号是不是数字等等

PS:验证座机没搞过, 不过我想你拿到的带区号的电话号码怎么可能是数字类型的?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-3-15 20:54:54 | 显示全部楼层
用正则表达式
不会web,python写的正则表达式
#!/usr/bin/env python
#coding=utf-8

import re

pattern = r'(\d{4}-)?\d{8}'
print(re.fullmatch(pattern, input()))
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-3-15 21:04:26 | 显示全部楼层
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
</head>
<body>

<script>
var str = "1234-12345678";
var patt1 = /(\d{4}-)?\d{8}/;
document.write(str.match(patt1));
</script>
        <br>
<script>
var str = "1234-1234567";
var patt1 = /(\d{4}-)?\d{8}/;
document.write(str.match(patt1));
</script>
        <br>
<script>
var str = "1234-1234567a";
var patt1 = /(\d{4}-)?\d{8}/;
document.write(str.match(patt1));
</script>

</body>
</html>
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2022-3-16 20:18:24 From FishC Mobile | 显示全部楼层
人造人 发表于 2022-3-15 21:04

谢谢了,搞出来了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-12-23 05:31

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表