【字符串操作 —— DTMobile】
功能: 手机号脱敏。
1-函数引入
js
import { DTMobile } from 'tj-jstools'
1
2-函数声明
ts
declare const DTMobile: (mobile: string) => string;
1
3-使用示例
ts
const phone:strig = DTMobile('15766669527')
// 157****9527
1
2
3
2
3
当输入一个正常的手机号时,处理后中间部位会被星号替换。
ts
const phone:strig = DTMobile('157666695272334234242')
// ''
1
2
3
2
3
当输入的是一个不正常的手机号时会被警告,且返回一个空字符串
WARNING
请输入一个正确的手机号
ts
const phone:strig = DTMobile(157666695272334234242)
// ''
1
2
3
2
3
当输入的不是一个字符串时,会被警告,且返回一个空字符串。
WARNING
请输入一个字符串格式的手机号