diff options
author | Matthias Clasen <mclasen@redhat.com> | 2010-08-08 23:53:52 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2010-08-08 23:55:12 -0400 |
commit | 43c0aa9ebe16cf17009678732decc9e852701f15 (patch) | |
tree | c0eec29753356284800f25630b447a084837cc48 /docs | |
parent | 4e42893369c8b8092de7feedb447ca538f8dccf2 (diff) | |
download | glib-43c0aa9ebe16cf17009678732decc9e852701f15.tar.gz |
Replace the explicit list of character categories by a reference
to the GUnicodeType docs.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/reference/glib/regex-syntax.sgml | 124 |
1 files changed, 3 insertions, 121 deletions
diff --git a/docs/reference/glib/regex-syntax.sgml b/docs/reference/glib/regex-syntax.sgml index 5a86a7445..8be1a131d 100644 --- a/docs/reference/glib/regex-syntax.sgml +++ b/docs/reference/glib/regex-syntax.sgml @@ -556,7 +556,9 @@ examples have the same effect: </programlisting> <para> -The following general category property codes are supported: +In addition to the two-letter category codes listed in the +documentation for the #GUnicodeType enumeration, the following +general category property codes are supported: </para> <table frame="all" colsep="1" rowsep="1"> @@ -575,149 +577,29 @@ The following general category property codes are supported: <entry>Other</entry> </row> <row> - <entry>Cc</entry> - <entry>Control</entry> - </row> - <row> - <entry>Cf</entry> - <entry>Format</entry> - </row> - <row> - <entry>Cn</entry> - <entry>Unassigned</entry> - </row> - <row> - <entry>Co</entry> - <entry>Private use</entry> - </row> - <row> - <entry>Cs</entry> - <entry>Surrogate</entry> - </row> - <row> <entry>L</entry> <entry>Letter</entry> </row> <row> - <entry>Ll</entry> - <entry>Lower case letter</entry> - </row> - <row> - <entry>Lm</entry> - <entry>Modifier letter</entry> - </row> - <row> - <entry>Lo</entry> - <entry>Other letter</entry> - </row> - <row> - <entry>Lt</entry> - <entry>Title case letter</entry> - </row> - <row> - <entry>Lu</entry> - <entry>Upper case letter</entry> - </row> - <row> <entry>M</entry> <entry>Mark</entry> </row> <row> - <entry>Mc</entry> - <entry>Spacing mark</entry> - </row> - <row> - <entry>Me</entry> - <entry>Enclosing mark</entry> - </row> - <row> - <entry>Mn</entry> - <entry>Non-spacing mark</entry> - </row> - <row> <entry>N</entry> <entry>Number</entry> </row> <row> - <entry>Nd</entry> - <entry>Decimal number</entry> - </row> - <row> - <entry>Nl</entry> - <entry>Letter number</entry> - </row> - <row> - <entry>No</entry> - <entry>Other number</entry> - </row> - <row> <entry>P</entry> <entry>Punctuation</entry> </row> <row> - <entry>Pc</entry> - <entry>Connector punctuation</entry> - </row> - <row> - <entry>Pd</entry> - <entry>Dash punctuation</entry> - </row> - <row> - <entry>Pe</entry> - <entry>Close punctuation</entry> - </row> - <row> - <entry>Pf</entry> - <entry>Final punctuation</entry> - </row> - <row> - <entry>Pi</entry> - <entry>Initial punctuation</entry> - </row> - <row> - <entry>Po</entry> - <entry>Other punctuation</entry> - </row> - <row> - <entry>Ps</entry> - <entry>Open punctuation</entry> - </row> - <row> <entry>S</entry> <entry>Symbol</entry> </row> <row> - <entry>Sc</entry> - <entry>Currency symbol</entry> - </row> - <row> - <entry>Sk</entry> - <entry>Modifier symbol</entry> - </row> - <row> - <entry>Sm</entry> - <entry>Mathematical symbol</entry> - </row> - <row> - <entry>So</entry> - <entry>Other symbol</entry> - </row> - <row> <entry>Z</entry> <entry>Separator</entry> </row> - <row> - <entry>Zl</entry> - <entry>Line separator</entry> - </row> - <row> - <entry>Zp</entry> - <entry>Paragraph separator</entry> - </row> - <row> - <entry>Zs</entry> - <entry>Space separator</entry> - </row> </tbody> </tgroup> </table> |