代码搜索:字符型
找到约 10,000 项符合「字符型」的源代码
代码结果 10,000
www.eeworm.com/read/219375/14884331
dat bookinfo.dat
[General Information]
书名=泛型编程与STL
作者=
页数=548
SS号=0
出版日期=
www.eeworm.com/read/280199/10348172
txt 正则表达式大全.txt
匹配中文字符的正则表达式: [\u4e00-\u9fa5]
匹配双字节字符(包括汉字在内):[^\x00-\xff]
应用:计算字符串的长度(一个双字节字符长度计2,ASCII字符计1)
String.prototype.len=function(){return this.replace([^\x00-\xff]/g,"aa").length;}
匹配空行的正则表达式:\
www.eeworm.com/read/422366/10639912
txt chinareglater.txt
匹配中文字符的正则表达式: [\u4e00-\u9fa5]
匹配双字节字符(包括汉字在内):[^\x00-\xff]
应用:计算字符串的长度(一个双字节字符长度计2,ASCII字符计1)
String.prototype.len=function(){return this.replace([^\x00-\xff]/g,"aa").length;}
匹配空行的正则表达式:\
www.eeworm.com/read/249482/4450567
dat funtc225.dat
函数名称: memchr
函数原型: void *memchr(const void *s, int c, size_t n)
函数功能: 在字符串中第开始n个字符中寻找某个字符c的位置
函数返回: 返回 c 的位置指针,返回NULL时表示未找到
函数说明: s 要搜索的字符串,c 要寻找的字符,n 指定长度
所属文件:
www.eeworm.com/read/298155/3874720
dat funtc225.dat
函数名称: memchr
函数原型: void *memchr(const void *s, int c, size_t n)
函数功能: 在字符串中第开始n个字符中寻找某个字符c的位置
函数返回: 返回 c 的位置指针,返回NULL时表示未找到
函数说明: s 要搜索的字符串,c 要寻找的字符,n 指定长度
所属文件:
www.eeworm.com/read/243289/12950683
h string_set.h
/*
*
* string_set.h from boost 字符串查找集合-只需要"一次"字符串比较即可完成从无限个数的字符串集合里提取所需的字符串
*
* author:lin shao chuan (email:lsccsl@tom.com, msn:lsccsl@163.net)
*
*/
#ifndef __STRING_SET_H__
#define __ST
www.eeworm.com/read/239373/13283197
java pl0.java
import java.io.*;
import java.lang.*;
import java.util.*;
/*错误号
0 ,"缺少左括号"
1 ,"非法字符:赋值符号:="
2 ,"等号后的字符为非法字符"
3 ,"缺少等号"
4 ,"声明过程中遇到的字符不是标识符"
5 ,"缺少分号"
6 ,"非法语句"
7 ,"整数大小越界"
www.eeworm.com/read/321110/13412390
h string_set.h
/*
*
* string_set.h from boost 字符串查找集合-只需要"一次"字符串比较即可完成从无限个数的字符串集合里提取所需的字符串
*
* author:lin shao chuan (email:lsccsl@tom.com, msn:lsccsl@163.net)
*
*/
#ifndef __STRING_SET_H__
#define __ST
www.eeworm.com/read/310869/13642111
cpp 9_295_2.cpp
// 2.修改程序清单9.8:用string对象代替字符数组.这样,该程序将不再需要检查输入的字符串
// 是否过长,同时可以将输入字符串同字符串""进行比较,比判断是否为空行.
// static.cpp -- using a static local variable
#include
#include
void strcount