Text_Diff_Renderer_inline::_splitOnWords()
Method of the class: Text_Diff_Renderer_inline{}
No Hooks.
Return
null
. Nothing (null).
Usage
$Text_Diff_Renderer_inline = new Text_Diff_Renderer_inline(); $Text_Diff_Renderer_inline->_splitOnWords( $string, $newlineEscape );
- $string (required)
- -
- $newlineEscape **
- -
Default: "\n"
Text_Diff_Renderer_inline::_splitOnWords() Text Diff Renderer inline:: splitOnWords code WP 6.7.1
function _splitOnWords($string, $newlineEscape = "\n") { // Ignore \0; otherwise the while loop will never finish. $string = str_replace("\0", '', $string); $words = array(); $length = strlen($string); $pos = 0; while ($pos < $length) { // Eat a word with any preceding whitespace. $spaces = strspn(substr($string, $pos), " \n"); $nextpos = strcspn(substr($string, $pos + $spaces), " \n"); $words[] = str_replace("\n", $newlineEscape, substr($string, $pos, $spaces + $nextpos)); $pos += $spaces + $nextpos; } return $words; }