douliangpo0128 2011-12-12 23:17
浏览 23
已采纳

Word字符串/剪切HTML字符串中的文本

here what i want to do : i have a string containing HTML tags and i want to cut it using the wordwrap function excluding HTML tags.

I'm stuck :

public function textWrap($string, $width)
{
    $dom = new DOMDocument();
    $dom->loadHTML($string);
    foreach ($dom->getElementsByTagName('*') as $elem)
    {
        foreach ($elem->childNodes as $node)
        {
            if ($node->nodeType === XML_TEXT_NODE)
            {
                $text = trim($node->nodeValue);
                $length = mb_strlen($text);
                $width -= $length;
                if($width <= 0)
                { 
                    // Here, I would like to delete all next nodes
                    // and cut the current nodeValue and finally return the string 
                }
            }
        }
    }
}

I'm not sure i'm doing it in the right way at the moment. I hope it's clear...

EDIT :

Here an example. I have this text

    <p>
        <span class="Underline"><span class="Bold">Test to be cut</span></span>
   </p><p>Some text</p>

Let's say I want to cut it at the 6th character, I would like to return this :

<p>
    <span class="Underline"><span class="Bold">Test to</span></span>
</p>
  • 写回答

2条回答 默认 最新

  • dongyou8701 2011-12-13 19:20
    关注

    As I wrote in a comment, you first need to find the textual offset where to do the cut.

    First of all I setup a DOMDocument containing the HTML fragment and then selecting the body which represents it in the DOM:

    $htmlFragment = <<<HTML
    <p>
            <span class="Underline"><span class="Bold">Test to be cut</span></span>
       </p><p>Some text </p>
    HTML;
    
    $dom = new DOMDocument();
    $dom->loadHTML($htmlFragment);
    $parent = $dom->getElementsByTagName('body')->item(0);
    if (!$parent)
    {
        throw new Exception('Parent element not found.');
    }
    

    Then I use my TextRange class to find the place where the cut needs to be done and I use the TextRange to actually do the cut and locate the DOMNode that should become the last node of the fragment:

    $range = new TextRange($parent);
    
    // find position where to cut the HTML textual represenation
    // by looking for a word or the at least matching whitespace
    // with a regular expression. 
    $width = 17;
    $pattern = sprintf('~^.{0,%d}(?<=\S)(?=\s)|^.{0,%1$d}(?=\s)~su', $width);
    $r = preg_match($pattern, $range, $matches);
    if (FALSE === $r)
    {
        throw new Exception('Wordcut regex failed.');
    }
    if (!$r)
    {
        throw new Exception(sprintf('Text "%s" is not cut-able (should not happen).', $range));
    }
    

    This regular expression finds the offset where to cut things in the textual representation made available by $range. The regex pattern is inspired by another answer which discusses it more detailed and has been slightly modified to fit this answers needs.

    // chop-off the textnodes to make a cut in DOM possible
    $range->split($matches[0]);
    $nodes = $range->getNodes();
    $cutPosition = end($nodes);
    

    As it can be possible that there is nothing to cut (e.g. the body will become empty), I need to deal with that special case. Otherwise - as noted in the comment - all following nodes need to be removed:

    // obtain list of elements to remove with xpath
    if (FALSE === $cutPosition)
    {
        // if there is no node, delete all parent children
        $cutPosition = $parent;
        $xpath = 'child::node()';
    }
    else
    {
        $xpath = 'following::node()';
    }
    

    The rest is straight forward: Query the xpath, remove the nodes and output the result:

    // execute xpath
    $xp = new DOMXPath($dom);
    $remove = $xp->query($xpath, $cutPosition);
    if (!$remove)
    {
        throw new Exception('XPath query failed to obtain elements to remove');
    }
    
    // remove nodes
    foreach($remove as $node)
    {
        $node->parentNode->removeChild($node);
    }
    
    // inner HTML (PHP >= 5.3.6)
    foreach($parent->childNodes as $node)
    {
        echo $dom->saveHTML($node);
    }
    

    The full code example is available on viper codepad incl. the TextRange class. The codepad has a bug so it's result is not properly (Related: XPath query result order). The actual output is the following:

    <p>
            <span class="Underline"><span class="Bold">Test to</span></span></p>
    

    So take care you have a current libxml version (normally the case) and the output foreach at the end makes use of a PHP function saveHTML which is available with that parameter since PHP 5.3.6. If you don't have that PHP version, take some alternative like outlined in How to get the xml content of a node as a string? or a similar question.

    When you closely look in my example code you might notice that the cut length is quite large ($width = 17;). That is because there are many whitespace characters in front of the text. This could be tweaked by making the regular expression drop any number of whitespace in fron t of it and/or by trimming the TextRange first. The second option does need more functionality, I wrote something quick that can be used after creating the initial range:

    ...
    $range = new TextRange($parent);
    $trimmer = new TextRangeTrimmer($range);
    $trimmer->trim();
    ...
    

    That would remove the needless whitespace on left and right inside your HTML fragment. The TextRangeTrimmer code is the following:

    class TextRangeTrimmer
    {
        /**
         * @var TextRange
         */
        private $range;
    
        /**
         * @var array
         */
        private $charlist;
    
        public function __construct(TextRange $range, Array $charlist = NULL)
        {
            $this->range = $range;
            $this->setCharlist($charlist);      
        }
        /**
         * @param array $charlist list of UTF-8 encoded characters
         * @throws InvalidArgumentException
         */
        public function setCharlist(Array $charlist = NULL)
        {
             if (NULL === $charlist)
                $charlist = str_split(" \t
    \0\x0B")
            ;
    
            $list = array();
    
            foreach($charlist as $char)
            {
                if (!is_string($char))
                {
                    throw new InvalidArgumentException('Not an Array of strings.');
                }
                if (strlen($char))
                {
                    $list[] = $char; 
                }
            }
    
            $this->charlist = array_flip($list);
        }
        /**
         * @return array characters
         */
        public function getCharlist()
        {
            return array_keys($this->charlist);
        }
        public function trim()
        {
            if (!$this->charlist) return;
            $this->ltrim();
            $this->rtrim();
        }
        /**
         * number of consecutive charcters of $charlist from $start to $direction
         * 
         * @param array $charlist
         * @param int $start offset
         * @param int $direction 1: forward, -1: backward
         * @throws InvalidArgumentException
         */
        private function lengthOfCharacterSequence(Array $charlist, $start, $direction = 1)
        {
            $start = (int) $start;              
            $direction = max(-1, min(1, $direction));
            if (!$direction) throw new InvalidArgumentException('Direction must be 1 or -1.');
    
            $count = 0;
            for(;$char = $this->range->getCharacter($start), $char !== ''; $start += $direction, $count++)
                if (!isset($charlist[$char])) break;
    
            return $count;
        }
        public function ltrim()
        {
            $count = $this->lengthOfCharacterSequence($this->charlist, 0);
    
            if ($count)
            {
                $remainder = $this->range->split($count);
                foreach($this->range->getNodes() as $textNode)
                {
                    $textNode->parentNode->removeChild($textNode);
                }
                $this->range->setNodes($remainder->getNodes());
            }
    
        }
        public function rtrim()
        {
            $count = $this->lengthOfCharacterSequence($this->charlist, -1, -1);
    
            if ($count)
            {
                $chop = $this->range->split(-$count);
                foreach($chop->getNodes() as $textNode)
                {
                    $textNode->parentNode->removeChild($textNode);
                }
            }
        }
    }
    

    Hope this is helpful.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 请问有人会紧聚焦相关的matlab知识嘛?
  • ¥50 yalmip+Gurobi
  • ¥20 win10修改放大文本以及缩放与布局后蓝屏无法正常进入桌面
  • ¥15 itunes恢复数据最后一步发生错误
  • ¥15 关于#windows#的问题:2024年5月15日的win11更新后资源管理器没有地址栏了顶部的地址栏和文件搜索都消失了
  • ¥100 H5网页如何调用微信扫一扫功能?
  • ¥15 讲解电路图,付费求解
  • ¥15 有偿请教计算电磁学的问题涉及到空间中时域UTD和FDTD算法结合的
  • ¥15 three.js添加后处理以后模型锯齿化严重
  • ¥15 vite打包后,页面出现h.createElement is not a function,但本地运行正常