Skip to content

Commit 65aade8

Browse files
authoredAug 10, 2019
Merge pull request #6 from ventormo/fix-4
Fix #4
2 parents 079168a + 67516e1 commit 65aade8

File tree

1 file changed

+53
-4
lines changed

1 file changed

+53
-4
lines changed
 

‎src/Components/Emoji/EmojiParser.php

+53-4
Original file line numberDiff line numberDiff line change
@@ -45,23 +45,72 @@ public function getPattern($delimiter = "/")
4545

4646
public function match($string, &$matches = null)
4747
{
48-
return preg_match($this->getPattern(), $string, $matches);
48+
$matchesBuffer;
49+
$result = preg_match($this->getPattern(), $string, $matchesBuffer);
50+
51+
if ($result) {
52+
if (preg_match('/[0-9]+/', $matchesBuffer[0])) {
53+
// If the match consists of both emoji and number.
54+
if (!preg_match('/^[0-9]+$/', $matchesBuffer[0])) {
55+
$matchesBuffer[0] = preg_replace('/[0-9]+/', '', $matchesBuffer[0]);
56+
57+
$matches = $matchesBuffer;
58+
return $result;
59+
}
60+
61+
$string = str_replace($matchesBuffer[0], '', $string);
62+
63+
$recurseMatches = null;
64+
$result = $this->match($string, $recurseMatches);
65+
$matchesBuffer = $recurseMatches;
66+
67+
$matches = $matchesBuffer;
68+
return $result;
69+
}
70+
}
71+
72+
$matches = $matchesBuffer;
73+
return $result;
4974
}
5075

5176
public function matchAll($string)
5277
{
5378
preg_match_all($this->getPattern(), $string, $matches);
79+
80+
foreach ($matches[0] as $matchIndex => $matchValue) {
81+
if (preg_match('/[0-9]+/', $matchValue)) {
82+
// If the match consists of both emoji and number.
83+
if (!preg_match('/^[0-9]+$/', $matchValue)) {
84+
$matchValue = preg_replace('/[0-9]+/', '', $matchValue);
85+
$matches[0][$matchIndex] = $matchValue;
86+
continue;
87+
}
88+
89+
unset($matches[0][$matchIndex]);
90+
}
91+
}
92+
93+
$matches[0] = array_values($matches[0]);
94+
5495
return $matches;
5596
}
5697

5798
public function replace($string, $replacement)
5899
{
59-
return preg_replace($this->getPattern(), $replacement, $string);
100+
return preg_replace_callback($this->getPattern(), function ($matches) use ($replacement) {
101+
foreach ($matches as $matchIndex => $matchValue) {
102+
return preg_replace('/[^0-9]+/', $replacement, $matchValue);
103+
}
104+
}, $string);
60105
}
61106

62107
public function replaceCallback($string, \Closure $closure)
63108
{
64-
return preg_replace_callback($this->getPattern(), $closure, $string);
109+
return preg_replace_callback($this->getPattern(), function ($matches) use ($closure) {
110+
return preg_replace_callback('/[^0-9]+/', function ($emoji) use ($closure) {
111+
return $closure($emoji[0]);
112+
}, $matches[0]);
113+
}, $string);
65114
}
66115

67116
/**
@@ -81,4 +130,4 @@ public function isOnlyEmoji($string, $ignoreWhitespaces = true) {
81130

82131
return ($string === "");
83132
}
84-
}
133+
}

0 commit comments

Comments
 (0)
Please sign in to comment.