我有逗号分隔的字符串,并希望前100个条目(不包括第100个逗号)作为单个字符串。
例如,如果我有字符串
a,b,c,d,e,f,g
问题是得到前3个条目,所需的结果字符串是
a,b,c
答案 0 :(得分:4)
使用explode / implode:
$str = 'a,b,c,d,e,f,g';
$temp1 = explode(',',$str);
$temp2 = array_slice($temp1, 0, 3);
$new_str = implode(',', $temp2);
使用正则表达式:
$new_str = preg_replace('/^((?:[^,]+,){2}[^,]+).*$/','\1',$str);
答案 1 :(得分:1)
尝试php的explode()功能。
$string_array = explode(",",$string);
遍历数组以获取所需的值:
for($i = 0; $i < sizeof($string_array); $i++)
{
echo $string_array[$i];//display values
}
答案 2 :(得分:1)
您可以通过找到第100个分隔符来执行此操作:
$delimiter = ',';
$count = 100;
$offset = 0;
while((FALSE !== ($r = strpos($subject, $delimiter, $offset))) && $count--)
{
$offset = $r + !!$count;
}
echo substr($subject, 0, $offset), "\n";
或类似地将其标记为:
$delimiter = ',';
$count = 100;
$len = 0;
$tok = strtok($subject, $delimiter);
while($tok !== FALSE && $count--)
{
$len += strlen($tok) + !!$count;
$tok = strtok($delimiter);
}
echo substr($subject, 0, $len), "\n";
答案 3 :(得分:0)
一种方法是在逗号后拆分字符串并将前100个索引放在一起(以逗号分隔)。 在此之前,您必须检查count(数组)是否大于或小于100.