代码搜索:Alphanumeric
找到约 221 项符合「Alphanumeric」的源代码
代码结果 221
www.eeworm.com/read/183326/9168568
ads terminal_interface-curses-forms-field_types-alphanumeric.ads
------------------------------------------------------------------------------
-- --
-- GNAT ncurses
www.eeworm.com/read/357508/10207510
ads terminal_interface-curses-forms-field_types-alphanumeric.ads
------------------------------------------------------------------------------
-- --
-- GNAT ncurses
www.eeworm.com/read/125782/14462525
ads terminal_interface-curses-forms-field_types-alphanumeric.ads
------------------------------------------------------------------------------
-- --
-- GNAT ncurses
www.eeworm.com/read/190618/8439926
c isalnum.c
/*************************************************************
* File: lib/isalnum.c
* Purpose: Part of C runtime library
* Author: Phil Bunce (pjb@carmel.com)
* Revision History:
* 970304 Start
www.eeworm.com/read/434450/7865901
awk xref.awk
# generate cross reference of identifiers in a program
# Original program courtesy Bruce Feist of Arlington VA
{
# remove non alphanumeric characters
gsub (/[`~!@#%\^&\*\(\)\+\|\-=\\\[\
www.eeworm.com/read/184748/9081142
h resource.h
//{{NO_DEPENDENCIES}}
// Microsoft Developer Studio generated include file.
// Used by ValidatingEditDemo.rc
//
#define IDM_ABOUTBOX 0x0010
#define IDD_ABOUTBOX
www.eeworm.com/read/367418/9750037
h resource.h
//{{NO_DEPENDENCIES}}
// Microsoft Developer Studio generated include file.
// Used by ValidatingEditDemo.rc
//
#define IDM_ABOUTBOX 0x0010
#define IDD_ABOUTBOX
www.eeworm.com/read/183756/9142114
c isalnum.c
/* isalnum.c - character classification */
/* Copyright 1992-1993 Wind River Systems, Inc. */
/*
modification history
--------------------
01e,03mar93,jdi more documentation cleanup for 5.1.
01d,07
www.eeworm.com/read/378183/9244490
dat vb_fun45b.dat
语法
----
IMEStatus
返回值
下面是中文地区的返回值:
常数 值 描述
vbIMEModeNoControl 0 不控制IME(缺省)
vbIMEModeOn 1 打开 IME
vbIMEModeOff 2 关闭 IME
下面是日本国别的返回值:
www.eeworm.com/read/170114/9818843
c 7-6.c
#include
main()
{
char str[]="123c@#FDsP[e?";
int i;
for (i=0;str[i]!=0;i++)
if(isalpha(str[i])) printf("%c is an alphanumeric character\n",str[i]);
}