@@ -45,23 +45,72 @@ public function getPattern($delimiter = "/")
45
45
46
46
public function match ($ string , &$ matches = null )
47
47
{
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 ;
49
74
}
50
75
51
76
public function matchAll ($ string )
52
77
{
53
78
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
+
54
95
return $ matches ;
55
96
}
56
97
57
98
public function replace ($ string , $ replacement )
58
99
{
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 );
60
105
}
61
106
62
107
public function replaceCallback ($ string , \Closure $ closure )
63
108
{
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 );
65
114
}
66
115
67
116
/**
@@ -81,4 +130,4 @@ public function isOnlyEmoji($string, $ignoreWhitespaces = true) {
81
130
82
131
return ($ string === "" );
83
132
}
84
- }
133
+ }
0 commit comments