Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | rm ucd/*.go into separate project | EuAndreh | 2024-11-29 | 1 | -155/+0 |
| | |||||
* | Move all UCD-related processes to ucd package | Ryo Nihei | 2021-11-27 | 1 | -3/+3 |
| | |||||
* | Refactor the UCD file parsers | Ryo Nihei | 2021-11-23 | 1 | -155/+72 |
| | |||||
* | Add character property expression (Meet RL1.2 of UTS #18 partially) | Ryo Nihei | 2021-04-30 | 1 | -0/+238 |
\p{property name=property value} matches a character has the property. When the property name is General_Category, it can be omitted. That is, \p{Letter} equals \p{General_Category=Letter}. Currently, only General_Category is supported. This feature meets RL1.2 of UTS #18 partially. RL1.2 Properties: https://unicode.org/reports/tr18/#RL1.2 |