Unix and Linux Discussions Tagged with case |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
2,902 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,300 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
2,487 |
Shell Programming and Scripting |
|
|
|
6 |
8,046 |
Cybersecurity |
|
|
|
5 |
3,972 |
Shell Programming and Scripting |
|
|
|
3 |
2,670 |
Shell Programming and Scripting |
|
|
|
3 |
1,599 |
Shell Programming and Scripting |
|
|
|
9 |
10,887 |
Shell Programming and Scripting |
|
|
|
4 |
4,721 |
Shell Programming and Scripting |
|
|
|
12 |
2,647 |
Shell Programming and Scripting |
|
|
|
4 |
3,464 |
Shell Programming and Scripting |
|
|
|
3 |
6,428 |
Shell Programming and Scripting |
|
|
|
2 |
2,770 |
Shell Programming and Scripting |
|
|
|
7 |
4,163 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
11,714 |
Shell Programming and Scripting |
|
|
|
1 |
3,355 |
Shell Programming and Scripting |
|
|
|
6 |
15,217 |
Shell Programming and Scripting |
|
|
|
8 |
8,549 |
Shell Programming and Scripting |
|
|
|
2 |
14,601 |
Google Chrome OS |
|
|
|
6 |
9,741 |
UNIX for Dummies Questions & Answers |
|
|
|
7 |
27,748 |
Shell Programming and Scripting |
|
|
|
5 |
4,178 |
Shell Programming and Scripting |
|
|
|
4 |
5,488 |
UNIX for Dummies Questions & Answers |
|
|
|
5 |
7,298 |
Shell Programming and Scripting |
|
|
|
2 |
20,320 |
Shell Programming and Scripting |
|
|
|
3 |
5,342 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
1,988 |
Complex Event Processing RSS News |
|
|
|
0 |
1,422 |
Complex Event Processing RSS News |
|
|
|
2 |
33,345 |
Shell Programming and Scripting |
|
|
|
2 |
5,074 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
4,908 |
Programming |
|
|
|
3 |
5,626 |
Shell Programming and Scripting |
|
|
|
2 |
4,901 |
Shell Programming and Scripting |
|
|
|
2 |
3,247 |
Shell Programming and Scripting |
|
|
|
13 |
5,228 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
6,882 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
1,675 |
Complex Event Processing RSS News |
|
|
|
4 |
9,339 |
Solaris |
|
|
|
0 |
2,427 |
MySQL DevZone RSS |
|
|
|
0 |
1,673 |
Complex Event Processing RSS News |
Tcl_UtfToUpper(3) Tcl Library Procedures Tcl_UtfToUpper(3)
__________________________________________________________________________________________________________________________________________________
NAME
Tcl_UniCharToUpper, Tcl_UniCharToLower, Tcl_UniCharToTitle, Tcl_UtfToUpper, Tcl_UtfToLower, Tcl_UtfToTitle - routines for manipulating the
case of Unicode characters and UTF-8 strings
SYNOPSIS
#include <tcl.h>
Tcl_UniChar
Tcl_UniCharToUpper(ch)
Tcl_UniChar
Tcl_UniCharToLower(ch)
Tcl_UniChar
Tcl_UniCharToTitle(ch)
int
Tcl_UtfToUpper(str)
int
Tcl_UtfToLower(str)
int
Tcl_UtfToTitle(str)
ARGUMENTS
int ch (in) The Tcl_UniChar to be converted.
char *str (in/out) Pointer to UTF-8 string to be converted in place.
_________________________________________________________________
DESCRIPTION
The first three routines convert the case of individual Unicode characters:
If ch represents a lower-case character, Tcl_UniCharToUpper returns the corresponding upper-case character. If no upper-case character is
defined, it returns the character unchanged.
If ch represents an upper-case character, Tcl_UniCharToLower returns the corresponding lower-case character. If no lower-case character is
defined, it returns the character unchanged.
If ch represents a lower-case character, Tcl_UniCharToTitle returns the corresponding title-case character. If no title-case character is
defined, it returns the corresponding upper-case character. If no upper-case character is defined, it returns the character unchanged.
Title-case is defined for a small number of characters that have a different appearance when they are at the beginning of a capitalized
word.
The next three routines convert the case of UTF-8 strings in place in memory:
Tcl_UtfToUpper changes every UTF-8 character in str to upper-case. Because changing the case of a character may change its size, the byte
offset of each character in the resulting string may differ from its original location. Tcl_UtfToUpper writes a null byte at the end of
the converted string. Tcl_UtfToUpper returns the new length of the string in bytes. This new length is guaranteed to be no longer than
the original string length.
Tcl_UtfToLower is the same as Tcl_UtfToUpper except it turns each character in the string into its lower-case equivalent.
Tcl_UtfToTitle is the same as Tcl_UtfToUpper except it turns the first character in the string into its title-case equivalent and all fol-
lowing characters into their lower-case equivalents.
BUGS
At this time, the case conversions are only defined for the ISO8859-1 characters. Unicode characters above 0x00ff are not modified by
these routines.
KEYWORDS
utf, unicode, toupper, tolower, totitle, case
Tcl 8.1 Tcl_UtfToUpper(3)