Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

De-DOS line-endings #14880

Merged
merged 1 commit into from
Jan 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 23 additions & 23 deletions cpp/doxygen/unicode.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
# Unicode Limitations
The strings column currently supports only UTF-8 characters internally.
For functions that require character testing (e.g. cudf::strings::all_characters_of_type()) or
case conversion (e.g. cudf::strings::capitalize(), etc) only the 16-bit [Unicode 13.0](http://www.unicode.org/versions/Unicode13.0.0)
character code-points (0-65535) values are supported.
Case conversion and character testing on characters above code-point 65535 are not supported.
Case conversions that are context-sensitive are not supported. Also, case conversions that result
in multiple characters are not reversible. That is, adjacent individual characters will not be case converted
to a single character. For example, converting character ß to upper case will result in the characters "SS". But converting "SS" to lower case will produce "ss".
Strings case and type APIs:
- cudf::strings::all_characters_of_type()
- cudf::strings::to_upper()
- cudf::strings::to_lower()
- cudf::strings::capitalize()
- cudf::strings::title()
- cudf::strings::swapcase()
Also, using regex patterns that use the shorthand character classes `\d \D \w \W \s \S` will include only appropriate characters with
code-points between (0-65535).
# Unicode Limitations

The strings column currently supports only UTF-8 characters internally.
For functions that require character testing (e.g. cudf::strings::all_characters_of_type()) or
case conversion (e.g. cudf::strings::capitalize(), etc) only the 16-bit [Unicode 13.0](http://www.unicode.org/versions/Unicode13.0.0)
character code-points (0-65535) values are supported.
Case conversion and character testing on characters above code-point 65535 are not supported.

Case conversions that are context-sensitive are not supported. Also, case conversions that result
in multiple characters are not reversible. That is, adjacent individual characters will not be case converted
to a single character. For example, converting character ß to upper case will result in the characters "SS". But converting "SS" to lower case will produce "ss".

Strings case and type APIs:

- cudf::strings::all_characters_of_type()
- cudf::strings::to_upper()
- cudf::strings::to_lower()
- cudf::strings::capitalize()
- cudf::strings::title()
- cudf::strings::swapcase()

Also, using regex patterns that use the shorthand character classes `\d \D \w \W \s \S` will include only appropriate characters with
code-points between (0-65535).
Loading