File tree 3 files changed +6
-4
lines changed
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
export const DoubleUnicodePrefixReg = / ^ [ \uD800 - \uDBFF ] $ / ;
2
2
export const DoubleUnicodeSuffixReg = / ^ [ \uDC00 - \uDFFF ] $ / ;
3
+ export const DoubleUnicodeReg = / [ \uD800 - \uDBFF ] [ \uDC00 - \uDFFF ] / g;
3
4
export enum Priority {
4
5
DictNumber = 15 ,
5
6
DICT2 = 20 ,
Original file line number Diff line number Diff line change 1
- var regex = / [ \uD800 - \uDBFF ] [ \uDC00 - \uDFFF ] / g ;
1
+ import { DoubleUnicodePrefixReg , DoubleUnicodeSuffixReg , DoubleUnicodeReg } from './constant' ;
2
2
3
3
export function getStringLength ( string : string ) {
4
- return string . replace ( regex , '_' ) . length ;
4
+ return string . replace ( DoubleUnicodeReg , '_' ) . length ;
5
5
}
6
6
7
7
// 针对双音节中文特殊划分
8
8
export function getSplittedWord ( string : string ) {
9
9
const arr = [ ] ;
10
10
for ( let i = 0 ; i < string . length ; i ++ ) {
11
11
if (
12
- / [ \uD800 - \uDBFF ] / . test ( string [ i ] ) &&
12
+ DoubleUnicodePrefixReg . test ( string [ i ] ) &&
13
13
i + 1 < string . length &&
14
- / [ \uDC00 - \uDFFF ] / . test ( string [ i + 1 ] )
14
+ DoubleUnicodeSuffixReg . test ( string [ i + 1 ] )
15
15
) {
16
16
arr . push ( string [ i ] + string [ i + 1 ] ) ;
17
17
i ++ ;
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ const Numbers = {
21
21
多 : 'duō' ,
22
22
十一 : 'shí yī' ,
23
23
零一 : 'líng yī' ,
24
+ 几 : 'jǐ' ,
24
25
} ;
25
26
26
27
const NumberWordMap = {
You can’t perform that action at this time.
0 commit comments