删除给定格式的不需要的字符

时间:2017-02-07 04:48:29

标签: php regex preg-match

我有一个字符串格式,删除不需要的字符和时间格式只有我的字符串是10:02:in(user),删除所有字符,只采取10:02如何?

3 个答案:

答案 0 :(得分:0)

尝试使用substr

$myStr = "10:02:in(user)";
echo $result = substr($myStr, 0, 5);

答案 1 :(得分:0)

$str = "10:02:in(user)";
echo substr($str, 0,5);

答案 2 :(得分:0)

explode()函数用于分割字符串。

  

语法:

爆炸(分隔符,字符串名称,限制)

<?php
$str = "10:02:in(user)";
$new = explode(":", $str);
echo $new[0].":".$new[1];
?>