mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-05-09 23:51:34 +08:00
CharUtil.isBlankChar增加\u180e
This commit is contained in:
parent
052b0dc8d3
commit
ff0e3ea52b
@ -6,6 +6,7 @@
|
|||||||
# 5.8.11.M1 (2022-11-17)
|
# 5.8.11.M1 (2022-11-17)
|
||||||
|
|
||||||
### 🐣新特性
|
### 🐣新特性
|
||||||
|
* 【core 】 CharUtil.isBlankChar增加\u180e(pr#2738@Github)
|
||||||
### 🐞Bug修复
|
### 🐞Bug修复
|
||||||
|
|
||||||
-------------------------------------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------------------------------------
|
||||||
|
@ -263,7 +263,9 @@ public class CharUtil implements CharPool {
|
|||||||
// issue#I5UGSQ,Hangul Filler
|
// issue#I5UGSQ,Hangul Filler
|
||||||
|| c == '\u3164'
|
|| c == '\u3164'
|
||||||
// Braille Pattern Blank
|
// Braille Pattern Blank
|
||||||
|| c == '\u2800';
|
|| c == '\u2800'
|
||||||
|
// MONGOLIAN VOWEL SEPARATOR
|
||||||
|
|| c == '\u180e';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user