码迷,mamicode.com
首页 >  
搜索关键字:ctype    ( 298个结果
include方便查找
#include <assert.h> //设定插入点#include <ctype.h> //字符处理#include <errno.h> //定义错误码#include <float.h> //浮点数处理#include <fstream.h> //文件输入/输出#include <iomani ...
分类:其他好文   时间:2018-01-13 01:21:50    阅读次数:138
在lua中从一个字符串中移除空间源码
/* trim.c - based on http://lua-users.org/lists/lua-l/2009-12/msg00951.html from Sean Conner */ #include <stddef.h> #include <ctype.h> #include <lua.h ...
分类:其他好文   时间:2017-12-07 11:56:06    阅读次数:125
一个SQL语句的执行顺序
oracle数据库中的一个SQL语句 select e.a,e.b,(case when c.typee='A' then e.a when c.typee='B' then e.b when c.typee='C' then e.c end) from gprice e,ctype c where ...
分类:数据库   时间:2017-12-04 20:37:25    阅读次数:168
Python操作Excel
excel文件内容: 读取excel: 输出: 可以看到,数字一律按浮点型输出,日期却输出成一串小数?!布尔型输出0或1 代码稍做改动:来看一看表格的数据类型 输出: python读取excel中单元格的内容返回的有5种类型,即上面例子中的ctype: ctype: 0 empty,1 string ...
分类:编程语言   时间:2017-11-28 20:38:28    阅读次数:224
c标准头文件
好多C语言库函数参考还是用的TC的库函数参考,因此特地把现在C语言(C99)标准库函数的24个头文件列表如下:assert.h types.h(C99) signal.h stdlib.h complex.h(C99) iso646.h(C95) stdarg.h string.h ctype.h ...
分类:其他好文   时间:2017-11-28 01:27:28    阅读次数:138
《C程序设计语言》笔记 (十六) 参考手册8
字符类别测试 <ctype.h> 字符串函数<string.h> 数学函数<math.h> 实用函数<stdlib.h> 诊断<assert.h> 可变参数表<stdarg.h> 非局部跳转<setjmp.h> 信号<signal.h> 日期与时间函数<time.h> 与具体实现相关的限制<limi ...
分类:编程语言   时间:2017-11-18 18:54:24    阅读次数:137
【python操作excel相关】
读取excel文件,这里使用xlrd,使用的时候首先要导入xlrd模块;得到的类型是unicode数据类型 ctype : 0 empty,1 string, 2 number, 3 date, 4 boolean, 5 error ctype : 0 empty,1 string, 2 numbe ...
分类:编程语言   时间:2017-11-17 18:27:55    阅读次数:136
工作中遇到的技术问题整理
1、设置LC_CTYPE=zh_CN.hp15CN重启生效的原因: Locale是Linux/Unix系统下根据计算机用户所使用的语言,所在国家或者地区,以及当地的文化传统所定义的一个软件运行时的语言环境,LC_CTYPE是locale按照所涉及的使用习惯的各个方面分成的12大类中的其中一个,表示语 ...
分类:其他好文   时间:2017-10-17 15:27:12    阅读次数:160
排序的C语言实现
#include <stdio.h> #include <string.h>#include <ctype.h> #include <stdlib.h> #include <io.h> #include <math.h> #include <time.h> #define OK 1#define E ...
分类:编程语言   时间:2017-10-08 00:12:32    阅读次数:194
线性表的链式存储结构的C语言实现
#include "stdio.h" #include "string.h"#include "ctype.h" #include "stdlib.h" #include "io.h" #include "math.h" #include "time.h" #define OK 1#define E ...
分类:编程语言   时间:2017-10-06 10:32:38    阅读次数:207
298条   上一页 1 ... 8 9 10 11 12 ... 30 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!