正则表达式匹配所有拉丁字母大写字符吗?

时间:2019-04-29 04:12:16

标签: regex

[A-Z]

仅适用于基本拉丁字符集。不会捕获

那么对于给定的基于unicode拉丁语的unicode块,哪种正则表达式将匹配所有大写字母?

0000–007F   Basic Latin                    // A-Z
0080–00FF   Latin-1 Supplement             // À
0100–017F   Latin Extended-A               // Ā
0180–024F   Latin Extended-B               // Ɓ
0250–02AF   IPA Extensions                 // ʀ
1D00–1D7F   Phonetic Extensions            // ᴁ
1E00–1EFF   Latin Extended Additional      // Ḁ 
2C60–2C7F   Latin Extended-C               // Ⱡ
A720–A7FF   Latin Extended-D               // Ꝉ
AB30–AB6F   Latin Extended-E               // ꭆ
FF00–FFEF   Halfwidth and Fullwidth Forms  // L

从全部块列表中,我删除了这些块,因为它们在符号系统之外的语言中没有用

02B0–02FF   Spacing Modifier Letters       // NOPE
1D80–1DBF   Phonetic Extensions Supplement // NOPE
2070–209F   Superscripts and Subscripts    // NOPE
2100–214F   Letterlike Symbols             // NOPE
2150–218F   Number Forms                   // NOPE
FB00–FB4F   Alphabetic Presentation Forms  // NOPE

0 个答案:

没有答案