mirror of
https://github.com/clash-verge-rev/clash-verge-rev.git
synced 2026-04-13 21:40:33 +08:00
fix: regex for first character matching
This commit is contained in:
parent
54d5586a60
commit
10a151d411
@ -231,7 +231,8 @@ export const ProxyGroups = (props: Props) => {
|
||||
|
||||
// 缓存getFirstChar函数
|
||||
const getFirstChar = useCallback((str: string) => {
|
||||
const regex = /\p{Extended_Pictographic}|\p{L}|\p{N}|./u;
|
||||
const regex =
|
||||
/\p{Regional_Indicator}{2}|\p{Extended_Pictographic}|\p{L}|\p{N}|./u;
|
||||
const match = str.match(regex);
|
||||
return match ? match[0] : str.charAt(0);
|
||||
}, []);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user