php-emoji-regex icon indicating copy to clipboard operation
php-emoji-regex copied to clipboard

Matching # character.

Open TheMY3 opened this issue 4 years ago • 3 comments

Can you explain why emoji parser catch # symbol?

For example:

$parser = new Kozz\Components\Emoji\EmojiParser();
$parser->match('#test', $matches);

And $matches should be:

[
	0 => '#'
]

TheMY3 avatar Feb 25 '20 08:02 TheMY3