apply_filters( ‘wp_spaces_regexp’, string $spaces )

In this article

Filters the regexp for common whitespace characters.

Description

This string is substituted for the \s sequence as needed in regular expressions. For websites not written in English, different characters may represent whitespace. For websites not encoded in UTF-8, the 0xC2 0xA0 sequence may not be in use.

Parameters

$spacesstring
Regexp pattern for matching common whitespace characters.

Source

$spaces = apply_filters( 'wp_spaces_regexp', '[\r\n\t ]|\xC2\xA0| ' );

Changelog

VersionDescription
4.0.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.