从输入中按位置删除字符串中的单词

时间:2013-06-18 19:40:29

标签: php string function

实施例

输入= 2

text = aa bb cc

将成为:aa cc

位置输入为$ _POST [' position']

我有

$words = explode(" ", $_POST['string']);
for ($i=0; $i<count($words); $i++){ 
    echo $words[$i] . " ";
}

5 个答案:

答案 0 :(得分:2)

$to_remove = 2;
$text = "aa bb cc";

$words = explode(' ', $text);
if(isset($words[$to_remove -1])) unset($words[$to_remove -1]);
$text = implode(' ', $words);

答案 1 :(得分:0)

$input = 2;
$words = explode(" ", $_POST['string']);
unset($words[$input-1]);
$words = implode(" ", $words);
echo $words;

答案 2 :(得分:0)

这听起来像是一个家庭作业问题。不过我会抓住它:

<强>代码:

<?php
    $string = trim($_POST['string']);
    $parts = explode(" ", string);
    $newString = "";
    $position = intval($_POST['position']);
    for($a = 0; $a < count($parts); $a++) {
        if($a != $position) { // or $a != ($position - 1) depending on if you passed in zero based position
            $newString = $newString . $parts[$a] . " ";
        }
    }
    $newString = trim($newString);

    echo "Old String: " . $string . "<br />";
    echo "New String: " . $newString;
?>

<强>输出:

Old String: aa bb cc
New String: aa cc

答案 3 :(得分:0)

拉出大枪 REGEX !!!

$string = 'aa bb cc dd';
$input = 2;

$regex = $input - 1;
echo preg_replace('#^((?:\S+\s+){'.$regex.'})(\S+\s*)#', '$1', $string);

输出: aa cc dd

答案 4 :(得分:0)

Foreach循环往往使它更容易理解(IMO)。看起来也更干净。

$pos = 2;
$sentence = explode(" ", $_POST['string']);

foreach ($sentence as $index => $word) {
    if ($index != $pos - 1) {
        $result .= $word . ' ';
    }
}

echo $result;