WP_Text_Diff_Renderer_inline{}WP 2.6.0AllowDynamicProperties

Better word splitting than the PEAR package provides.

No Hooks.

Usage

$WP_Text_Diff_Renderer_inline = new WP_Text_Diff_Renderer_inline();
// use class methods

Methods

  1. public _splitOnWords( $string, $newlineEscape = "\n" )

Changelog

Since 2.6.0 Introduced.

WP_Text_Diff_Renderer_inline{} code WP 6.4.3

class WP_Text_Diff_Renderer_inline extends Text_Diff_Renderer_inline {

	/**
	 * @ignore
	 * @since 2.6.0
	 *
	 * @param string $string
	 * @param string $newlineEscape
	 * @return string
	 */
	public function _splitOnWords( $string, $newlineEscape = "\n" ) { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.stringFound
		$string = str_replace( "\0", '', $string );
		$words  = preg_split( '/([^\w])/u', $string, -1, PREG_SPLIT_DELIM_CAPTURE );
		$words  = str_replace( "\n", $newlineEscape, $words );
		return $words;
	}
}