码迷,mamicode.com
首页 >  
搜索关键字:str    ( 67828个结果
sizeof
sizeof 计算数据类型占多少字节int *p,sizeof(p) :4 sizeof(*p) :4int a[10] sizeof(a) :40char str[]="hello" sizeof(str):6 strlen(str):5void fun(int a[10]) 等价int *a{....
分类:其他好文   时间:2014-05-19 14:57:37    阅读次数:194
数字金额转汉字金额
早上公交上总想这个问题,终于写出来了,不知道有错误没 1 $chinese = array("零","一","二","三","四","五","六","七","八","九"); 2 $str = 140032002005; 3 $arr = array(); 4 ...
分类:其他好文   时间:2014-05-18 19:27:44    阅读次数:262
Java学习笔记_19_String类
19.String类: 1>String类的构造方法: · 利用字符串构造一个字符串对象: String str = “HelloWorld”; 2>字符串对象操作: · charAt() :返回的是index+1位置的字符。 · equals和equalsIgnoreCase方法:...
分类:编程语言   时间:2014-05-18 15:30:44    阅读次数:372
winform 加密 解密
界面显示: 加密: 解密: 代码实现: public string EncryptString(string str)         {             #region 加密程序             char[] Base64Code = new char[] { 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', ...
分类:Windows程序   时间:2014-05-18 10:07:16    阅读次数:420
一个坑爹的BUG,不仔细看还真看不出来问题
Queue queue = new LinkedList (); for(int i = 0; i<20; i++) { queue.add("坑爹" + i); } for(int j =0; j<queue.size(); j++) { String str = queue.poll(); System.out.println(j); }嘿嘿 输出的是从1~10;虽然没什么技术含量但是我...
分类:其他好文   时间:2014-05-18 04:20:23    阅读次数:282
PHP中的中文截取乱码问题_gb2312_utf-8
一、字符串编码为gb2312,一个中文占俩字节public static function chinesesubstr($str, $start, $len) { // $str指字符串,$start指字符串的起始位置,$len指字符串长度 $strlen = $start + $le...
分类:Web程序   时间:2014-05-17 22:47:15    阅读次数:520
UVA644
#include#includechar str[100][100];int com(int t,int x){ int n,m,i; n=strlen(str[t]); m=strlen(str[x]); n=(n>m)?m:n; for(i=0;i//我写的#inc...
分类:其他好文   时间:2014-05-17 21:28:58    阅读次数:273
.net C#实现 中文转Unicode、Unicode转中文 及与js对应关系
中文转Unicode:HttpUtility.UrlEncodeUnicode(string str);转换后中文格式:"%uxxxx" 举例:"柳_abc123" 转换结果是:"%u67f3_abc123"Unicode转中文1:HttpUtility.UrlDecode(string str);...
分类:Web程序   时间:2014-05-17 19:29:51    阅读次数:277
KMP超强模板贴一份
while(scanf("%s",str+1)==1){intn=strlen(str+1);next[1]=0;intj=0;for(inti=2;i2#include3#include4#include5#include6#include7#include8usingnamespacestd;9...
分类:其他好文   时间:2014-05-17 18:14:24    阅读次数:270
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!