1.数组转字符串var a, b;a = new Array(0,1,2,3,4);b =
a.join("-");2.字符串转数组var s = "abc,abcd,aaa";ss = s.split(",");3.数字转字符串
分类:
Web程序 时间:
2014-05-26 18:05:05
阅读次数:
292
Python能够成为流行的数据处理语言,部分原因是其简单易用的字符串和文本处理功能。大部分文本运算都直接做成了字符串对象的内置方法。对于更为复杂的模式匹配和文本操作,则可能需要用到正则表达式。pandas对此进行了加强,它使你能够对数组数据应用字符串表达式和正则表达式,而且能处理烦人的缺失数据。...
分类:
编程语言 时间:
2014-05-26 03:42:44
阅读次数:
443
先上一张图讲一下Compaction和Split的关系,这样会比较直观一些。Compaction把多个MemStore
flush出来的StoreFile合并成一个文件,而Split则是把过大的文件Split成两个。之前在Delete的时候,我们知道它其实并没有真正删除数据的,那总不能一直不删吧,下...
分类:
其他好文 时间:
2014-05-25 18:41:37
阅读次数:
415
采集jxl.jar包,网上下载,百度一下导出都是。
接下来直接贴代码:public List getValue(String fileName){
String str=ExcelOparations.readExcel(fileName).trim();
String[] str4n= str.split("\n");
List list1 =...
分类:
编程语言 时间:
2014-05-25 00:28:26
阅读次数:
432
function wrapText(context, text, x, y,
maxWidth, lineHeight) { var words = text.split(" "); var line = ""; for (var
n...
分类:
其他好文 时间:
2014-05-24 07:58:42
阅读次数:
244
序列序类是一个集合概念, Pthon包括六种内建序列: 列表, 元组, 字符串,
Unicode字符串, buffer对象和xrange对象. 其中, 我们最长用的要数前三个.通用序列操作 1.
索引(indexing)序列的所有元素都是有编号的(从0开始...), 这些元素可以通过编号访问, 如....
分类:
编程语言 时间:
2014-05-23 07:19:41
阅读次数:
347
今天写了个java的小程序在运行的时候抛出下面的异常:java.lang.NumberFormatException:
For input string: "" 。定位到源程序中出错的地方: String[] cols = key.toString().split(" ");
return...
分类:
编程语言 时间:
2014-05-23 03:50:00
阅读次数:
325
"15000000".split("").reverse().join("").replace(/(\d{3})/g,
"$1,").split("").reverse().join("");"115000000".split("").reverse().join("").replace(/(\d{...
分类:
其他好文 时间:
2014-05-22 05:04:27
阅读次数:
357
Divideing Jewels时间限制:1000 ms | 内存限制:65535
KB难度:4描述Mary and Rose own a collection of jewells. They want to split the
collection among themselves so tha...
分类:
其他好文 时间:
2014-05-21 22:05:03
阅读次数:
492
Big Event in HDU
Problem Description
Nowadays, we all know that Computer College is the biggest department in HDU. But, maybe you don't know that Computer College had ever been split into Comp...
分类:
其他好文 时间:
2014-05-21 10:51:55
阅读次数:
300