Lines Matching refs:splitText
2 Bug #46335 (DOMText::splitText doesn't handle multibyte characters).
7 $textascii = 'This is an "example" of using DOM splitText';
8 $text = 'This is an ‘example’ of using DOM splitText';
18 $matched = $node->splitText($start);
19 $matched->splitText($length);
20 print "splitText (ASCII): $matched->textContent\n";
27 $matched = $node->splitText($start);
28 $matched->splitText($length);
29 print "splitText (UTF-8): $matched->textContent\n";
32 Text: This is an "example" of using DOM splitText
33 splitText (ASCII): DOM
34 Text: This is an ‘example’ of using DOM splitText
35 splitText (UTF-8): DOM