针对前后含有空格、有空格的、空字符串、以及null字符的判断 public static void main(String[] args) { String s1 = ""; String s2 = null; String s3 = " "; String s4 = "hello...
分类:
其他好文 时间:
2014-08-05 13:20:09
阅读次数:
207
#include#include#includeusing namespace std;int main(){ vector str={"The is C++ program ","hfh ","","hfdshfisoid"}; for(auto it=str.begin();it!=...
分类:
其他好文 时间:
2014-08-03 17:40:35
阅读次数:
289
1. string.IsNullOrEmpty(X): 判断是否为空字符2. IsNullOrWhiteSpace(x):判断是否为空字符或空格字符3. Timespan: 表示两个时间之差, datetime dt1 = "2014/8/3 10:00:00".toDateTime(DateTim...
分类:
Web程序 时间:
2014-08-03 17:39:25
阅读次数:
322
输入一个字符串S,再输入一个字符c,要求在字符串S中查找字符c。如果找不到则输出“Not found”;若找到则输出字符串S中从c开始的所有字符。输入格式:输入在第1行中给出一个不超过80个字符长度的、以回车结束的非空字符串;在第2行中给出一个字符。输出格式:在一行中按照题目要求输出结果。输入样例1...
分类:
其他好文 时间:
2014-08-03 15:09:15
阅读次数:
145
向量矩阵和数组
1.vector函数可以创建指定类型、长度的矢量
(其结果中的值可以是0,FLASE,空字符串)
> vector("numeric",5)
[1] 0 0 0 0 0
> vector("complex",6)
[1] 0+0i 0+0i 0+0i 0+0i 0+0i 0+0i
> ve...
分类:
其他好文 时间:
2014-08-01 19:57:12
阅读次数:
278
在这不做 理论上的 释疑,只是提供示例代码int main(){ char *p=NULL; if (p==NULL) // { p="p is NULL pointer"; } printf("%s\n",p); return 0;}//此处说明:...
分类:
编程语言 时间:
2014-08-01 13:15:01
阅读次数:
219
代码:String str = "the music made it hard to concentrate";String delims = "[ ]+";String[] tokens = str.split(delims);结果为:the, music, made, it, hard, to,...
分类:
编程语言 时间:
2014-07-31 12:07:26
阅读次数:
211
javascript ?中的falsy值 6个:false null undefined 0(数字) NaN(数字) ?‘’最后一个指的是空字符串 其他为true, ? 包括‘false‘. from javascript good parts P26...
分类:
编程语言 时间:
2014-07-31 00:13:15
阅读次数:
262
PHP5.2 新增的 json 功能是非常受欢迎的,但是经过测试发现,json_encode对中文的处理是有问题的: 不能处理GB编码,所有的GB编码都会替换成空字符; utf8编码的中文被编码成unicode编码,相当于javascript的escape函数处理的结果。 为了能正确使用jso...
分类:
Web程序 时间:
2014-07-30 20:05:24
阅读次数:
245
注意问题:
1)字符串是空指针的情况。
2)如果输入的是一个空字符串“”
3)所有‘0’到‘9’之外的字符都是非法的吗?加号和减号是合法输入。
4) 考虑溢出
#include
using namespace std;
bool g_value=false;
int atoi(char * number){
if(number == NULL || *nu...
分类:
其他好文 时间:
2014-07-30 17:37:04
阅读次数:
182