我的代码存在一些类似“< i585>”的内容。我想从“i”到“>”得到字符串。并替换“585”而不是“< i585>”。我用JavaScript编写了一些代码。
<script type="text/javascript">
var foo ="M <i585> <i646>";
while (foo.indexOf("<i") != -1) {
var indexBaş = foo.indexOf("<i");
var indexSon = foo.indexOf(">", indexBaş);
var id = foo.substring(indexBaş + 2, indexSon);
foo = foo.substring(0 , indexBaş) + id + foo.substring(indexSon + 1 , foo.lenght);
}
document.write(foo);
</script>
但我必须将此代码转换为php。 所以我写了这段代码
$foo ="M <i585> <i646>";
$start = 0;
$kacTane= 0;
for($i = 0 ; $i < strlen($foo) ; $i++ ) {
if($foo[$i] == "<") {
if(($foo + 1 )< strlen($foo)) {
if($foo[$i+1] == "i") {
$kacTane++;
}
}
}
}
for($i = 0; $i < $kacTane; $i++) {
$ilkIndex = strpos($foo , "<" , $start);
$sonindex = strpos($foo , ">" , $ilkIndex);
$id = substr($foo , $ilkIndex + 2 ,( $sonIndex -3) - $ilkIndex );
$first = substr($foo , 0 , $ilkIndex +2);
$second = substr($foo , $sonIndex + 1 , strlen($foo) - $sonIndex - 1 );
$foo = "$first$id$second";
$start = ($sonindex + 1);
}
echo $foo;
但这不起作用。
抱歉英语不好。
答案 0 :(得分:1)
有一些带有变量名称的拼写错误($ sonindex - $ sonIndex)。
你从原始字符串中删除了3个字符,然后在下一次迭代之前你加上一个加到$ start,但是你应该减去一个。
$foo ="M <i585> <i646>";
$start = 0;
$kacTane= 0;
for($i = 0 ; $i < strlen($foo) ; $i++ ) {
if($foo[$i] == "<") {
if(($foo + 1 )< strlen($foo)) {
if($foo[$i+1] == "i") {
$kacTane++;
}
}
}
}
for($i = 0; $i < $kacTane; $i++) {
$ilkIndex = strpos($foo , "<i" ,$start);
$sonIndex = strpos($foo , ">" , $ilkIndex);
$id = substr($foo , $ilkIndex + 2 , $sonIndex - $ilkIndex -2 );
$first = substr($foo , 0 , $ilkIndex );
$second = substr($foo , $sonIndex + 1 , strlen($foo) - $sonIndex - 1 );
$foo = $first.$id.$second;
$start = ($sonIndex - 1);
}
echo $foo;
答案 1 :(得分:0)
也许有些preg_match?
$foo ="M <i585> <i646>";
preg_match_all('/<i(.*?)>/',$foo, $results); //search for all numbers
$patterns = array();
$replace = array();
foreach ($results[1] as $result){
$patterns[] = '/<i'.$result.'>/';
switch ($result) {
case '585':
$result = '333';
break;
case '646':
$result = '444';
break;
}
$replace[] = '<i'.$result.'>';
}
$replace = preg_replace($patterns, $replace, $foo); //if you just want to repleace then this single line (+ arrays) are all you need.
echo '<br>'.$replace;