一、python读取txt文件:(思路:先打开文件,读取文件,最后用for循环输出内容) fp = open('test.txt','r') lines = fp.readlines() fp.close() for line in lines: username = line.split(',') ...
分类:
编程语言 时间:
2016-05-05 22:03:12
阅读次数:
511
A Number of Ways A Number of Ways You've got array a[1],?a[2],?...,?a[n], consisting of n integers. Count the number of ways to split all the elements ...
分类:
其他好文 时间:
2016-04-30 23:44:26
阅读次数:
195
3675: [Apio2014]序列分割
Time Limit: 40 Sec Memory Limit: 128 MB
Submit: 1538 Solved: 637
[Submit][Status][Discuss]
Description
小H最近迷上了一个分隔序列的游戏。在这个游戏里,小H需要将一个长度为n的非负整数序列分割成k+1个非空的子序列。为了得到k+1个子序列,小H...
1、String的split(String regex)方法参数注意点
使用这个方法时,当我们直接以“.”为参数时,是会出错的,如:
String str = "12.03";
String[] res = str.spilt("."); //出错!!!此时,我们得到的res是为空的(不是null),即str = [];
因为String的split(String regex)根据给定...
分类:
编程语言 时间:
2016-04-29 16:57:34
阅读次数:
384
match 方法 使用正则表达式模式对字符串执行查找,并将包含查找的结果作为数组返回。 stringObj.match(rgExp) 参数 stringObj 必选项。对其进行查找的 String 对象或字符串文字。 rgExp 必选项。为包含正则表达式模式和可用标志的正则表达式对象。也可以是包含正 ...
分类:
Web程序 时间:
2016-04-29 14:26:10
阅读次数:
236
一、判空与非空 2.1.list集合判断为空:List==null||(List!=null&&List.size()<=0) list集合判断不为空:List!=null&&List.size()>0 二、split 在java中函数split(".")必须是是split("\\.") 三、equ ...
分类:
编程语言 时间:
2016-04-29 14:12:48
阅读次数:
154
<?php //正则表达式 //斜杠代表定界符 /*$b = "ab2cde123fg1h"; $a = "/\d/"; //echo preg_replace($a,"|",$b); //将字符串b按照正则表达式a替换 //var_dump(preg_split($a,$b)); //将b按照正则 ...
分类:
编程语言 时间:
2016-04-28 09:20:45
阅读次数:
234
A quadtree is a representation format used to encode images. The fundamental idea behind the quadtree is that any image can be split into four quadran ...
分类:
其他好文 时间:
2016-04-26 19:12:01
阅读次数:
220
1. Greedy Algorithm: Best Time to BUY/SELL II 2. (5) Stack and Queue: Simplify Path 3. Question not from Leetcode Split This should be fairly simple, ...
分类:
其他好文 时间:
2016-04-26 19:04:16
阅读次数:
124
list = testString.Split(',').ToList();//把testString用","进行拆分,拆分结果为一个列表List<String> bool b= testString.Contains("\r\n");//判断testString是否包含\r\n string re ...