📄 unicharisalpha.3
字号:
'\"'\" Copyright (c) 1997 Sun Microsystems, Inc.'\"'\" See the file "license.terms" for information on usage and redistribution'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.'\" '\" RCS: @(#) $Id: UniCharIsAlpha.3,v 1.2 2001/05/03 23:59:01 hobbs Exp $'\" .so man.macros.TH Tcl_UniCharIsAlpha 3 "8.1" Tcl "Tcl Library Procedures".BS.SH NAMETcl_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.SH SYNOPSIS.nf\fB#include <tcl.h>\fR.spint\fBTcl_UniCharIsAlnum\fR(\fIch\fR).spint\fBTcl_UniCharIsAlpha\fR(\fIch\fR).spint\fBTcl_UniCharIsControl\fR(\fIch\fR).spint\fBTcl_UniCharIsDigit\fR(\fIch\fR).spint\fBTcl_UniCharIsGraph\fR(\fIch\fR).spint\fBTcl_UniCharIsLower\fR(\fIch\fR).spint\fBTcl_UniCharIsPrint\fR(\fIch\fR).spint\fBTcl_UniCharIsPunct\fR(\fIch\fR).spint\fBTcl_UniCharIsSpace\fR(\fIch\fR).spint\fBTcl_UniCharIsUpper\fR(\fIch\fR).spint\fBTcl_UniCharIsWordChar\fR(\fIch\fR).SH ARGUMENTS.AP int ch inThe Tcl_UniChar to be examined..BE.SH DESCRIPTION.PPAll of the routines described examine Tcl_UniChars and return aboolean value. A non-zero return value means that the character doesbelong to the character class associated with the called routine. Therest of this document just describes the character classes associatedwith the various routines..PPNote: A Tcl_UniChar is a Unicode character represented as an unsigned,fixed-size quantity..SH CHARACTER CLASSES.PP\fBTcl_UniCharIsAlnum\fR tests if the character is an alphanumeric Unicode character..PP\fBTcl_UniCharIsAlpha\fR tests if the character is an alphabetic Unicode character..PP\fBTcl_UniCharIsControl\fR tests if the character is a Unicode control character..PP\fBTcl_UniCharIsDigit\fR tests if the character is a numeric Unicode character..PP\fBTcl_UniCharIsGraph\fR tests if the character is any Unicode print character except space..PP\fBTcl_UniCharIsLower\fR tests if the character is a lowercase Unicode character..PP\fBTcl_UniCharIsPrint\fR tests if the character is a Unicode print character..PP\fBTcl_UniCharIsPunct\fR tests if the character is a Unicode punctuation character..PP\fBTcl_UniCharIsSpace\fR tests if the character is a whitespace Unicode character..PP\fBTcl_UniCharIsUpper\fR tests if the character is an uppercase Unicode character..PP\fBTcl_UniCharIsWordChar\fR tests if the character is alphanumeric ora connector punctuation mark..SH KEYWORDSunicode, classification
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -