Unix and Linux Discussions Tagged with character |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
5 |
4,296 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
2,952 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,105 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
9,444 |
Shell Programming and Scripting |
|
|
|
3 |
11,151 |
Shell Programming and Scripting |
|
|
|
6 |
4,638 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
5,259 |
Shell Programming and Scripting |
|
|
|
6 |
7,052 |
Shell Programming and Scripting |
|
|
|
1 |
3,211 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
3,472 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
7,704 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,936 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
5,092 |
Shell Programming and Scripting |
|
|
|
7 |
7,202 |
Shell Programming and Scripting |
|
|
|
5 |
2,597 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
8,750 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
3,530 |
Shell Programming and Scripting |
|
|
|
4 |
3,784 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
6,867 |
Shell Programming and Scripting |
|
|
|
9 |
3,913 |
Shell Programming and Scripting |
|
|
|
7 |
3,763 |
Shell Programming and Scripting |
|
|
|
10 |
4,740 |
Shell Programming and Scripting |
|
|
|
4 |
4,001 |
Shell Programming and Scripting |
|
|
|
1 |
1,437 |
Shell Programming and Scripting |
|
|
|
9 |
7,699 |
Shell Programming and Scripting |
|
|
|
1 |
1,477 |
Shell Programming and Scripting |
|
|
|
5 |
3,305 |
Linux |
|
|
|
12 |
16,265 |
Shell Programming and Scripting |
|
|
|
6 |
11,575 |
Shell Programming and Scripting |
|
|
|
1 |
4,456 |
Shell Programming and Scripting |
|
|
|
19 |
29,625 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
2,769 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
10,063 |
UNIX for Dummies Questions & Answers |
|
|
|
8 |
8,770 |
Shell Programming and Scripting |
|
|
|
4 |
6,627 |
Shell Programming and Scripting |
|
|
|
4 |
7,035 |
Shell Programming and Scripting |
|
|
|
3 |
37,242 |
Shell Programming and Scripting |
|
|
|
1 |
6,673 |
UNIX for Dummies Questions & Answers |
|
|
|
8 |
118,599 |
Shell Programming and Scripting |
|
|
|
4 |
2,826 |
Shell Programming and Scripting |
Tcl_UniCharIsAlpha(3) Tcl Library Procedures Tcl_UniCharIsAlpha(3)
__________________________________________________________________________________________________________________________________________________
NAME
Tcl_UniCharIsAlnum, Tcl_UniCharIsAlpha, Tcl_UniCharIsControl, Tcl_UniCharIsDigit, Tcl_UniCharIsGraph, Tcl_UniCharIsLower,
Tcl_UniCharIsPrint, Tcl_UniCharIsPunct, Tcl_UniCharIsSpace, Tcl_UniCharIsUpper, Tcl_UniCharIsWordChar - routines for classification of
Tcl_UniChar characters
SYNOPSIS
#include <tcl.h>
int
Tcl_UniCharIsAlnum(ch)
int
Tcl_UniCharIsAlpha(ch)
int
Tcl_UniCharIsControl(ch)
int
Tcl_UniCharIsDigit(ch)
int
Tcl_UniCharIsGraph(ch)
int
Tcl_UniCharIsLower(ch)
int
Tcl_UniCharIsPrint(ch)
int
Tcl_UniCharIsPunct(ch)
int
Tcl_UniCharIsSpace(ch)
int
Tcl_UniCharIsUpper(ch)
int
Tcl_UniCharIsWordChar(ch)
ARGUMENTS
int ch (in) The Tcl_UniChar to be examined.
_________________________________________________________________
DESCRIPTION
All of the routines described examine Tcl_UniChars and return a boolean value. A non-zero return value means that the character does belong
to the character class associated with the called routine. The rest of this document just describes the character classes associated with
the various routines.
Note: A Tcl_UniChar is a Unicode character represented as an unsigned, fixed-size quantity.
CHARACTER CLASSES
Tcl_UniCharIsAlnum tests if the character is an alphanumeric Unicode character.
Tcl_UniCharIsAlpha tests if the character is an alphabetic Unicode character.
Tcl_UniCharIsControl tests if the character is a Unicode control character.
Tcl_UniCharIsDigit tests if the character is a numeric Unicode character.
Tcl_UniCharIsGraph tests if the character is any Unicode print character except space.
Tcl_UniCharIsLower tests if the character is a lowercase Unicode character.
Tcl_UniCharIsPrint tests if the character is a Unicode print character.
Tcl_UniCharIsPunct tests if the character is a Unicode punctuation character.
Tcl_UniCharIsSpace tests if the character is a whitespace Unicode character.
Tcl_UniCharIsUpper tests if the character is an uppercase Unicode character.
Tcl_UniCharIsWordChar tests if the character is alphanumeric or a connector punctuation mark.
KEYWORDS
unicode, classification
Tcl 8.1 Tcl_UniCharIsAlpha(3)