我有一些手机格式的变量,如这些变量:
rdd.map(line => (0 to (line.productArity-1)).map(line.productElement(_)).toList.mkString("\t"))
如何在php中将这些变量转换为普通数字?
结果应该像这些变量一样:
$phone1 = "(123) 123-1234";
$phone2 = "+1234567892";
$phone3 = "123-434-3432
答案 0 :(得分:0)
使用使用正则表达式的preg_replace!
preg_replace("/[^0-9]/","",'123-434-3432');
删除除数字之外的所有内容!