1. //有字符串“A~B^C_D>E",拆分出单个字母: NSString *str =@" A~B^C_D>E "; str = [str stringByTrimmingCharactersInSet:[NSCharacterSetwhitespaceAndNewlineCharacterSe ...
分类:
其他好文 时间:
2016-12-29 11:09:25
阅读次数:
149
assign函数在循环时候,给变量赋值,算是比较方便 1、给变量赋值 [plain] view plain copy for (i in 1:(length(rowSeq)-1)){ assign(paste("nginx_server_fields7_", i, sep = ""), nginx_ ...
分类:
编程语言 时间:
2016-12-28 18:28:45
阅读次数:
587
函数paste的一般使用格式为: paste(..., sep = " ", collapse = NULL) 其中...表示一个或多个R可以被转化为字符型的对象;参数sep表示分隔符,默认为空格;参数collapse可选,如果不指定值,那么函数paste的返回值是自变量之间通过sep指定的分隔符连 ...
分类:
其他好文 时间:
2016-12-28 18:18:54
阅读次数:
247
pandas.read_csv pandas.read_csv(filepath_or_buffer, sep=', ', delimiter=None, header='infer', names=None, index_col=None, usecols=None, squeeze=False, ...
分类:
编程语言 时间:
2016-12-27 22:44:37
阅读次数:
238
建立存储过程 CREATE function [dbo].[split] ( @str varchar(4500), @sep varchar(1) ) returns @t table(id int identity(1,1),col varchar(4500)) as begin --分别定义了 ...
分类:
数据库 时间:
2016-12-27 22:23:20
阅读次数:
273
现在有一个按钮btn1,要动态创建出一个btn2,需要btn2点击时调用btn1的点击。 在delphi中这种操作很简单:btn2.onClick:=btn1.onClick,因为onClick就是个属性,和name、width、height一样。 但是c#不能直接访问,这就麻烦了, 匿名委托,例子 ...
整合步骤 创建web工程 导入整合所需的所有jar包 编写各层需要的配置文件 1) mybatis的全局配置文件 <configuration> <!-- 批量别名的设置 --> <typeAliases> <package name="cn.ssm.pojo"/> </typeAliases> < ...
分类:
编程语言 时间:
2016-12-27 01:16:14
阅读次数:
865
http://ruby-doc.org/stdlib-2.3.3/libdoc/optparse/rdoc/OptionParser.html#method-c-new 阅读lib的文档,做个笔记。OptionParser 这个类用于,在写一些command line工具的时候,设置命令行参数选项。 ...
分类:
其他好文 时间:
2016-12-26 21:37:11
阅读次数:
627
Hihocoder 太阁最新面经算法竞赛18 source: https://hihocoder.com/contest/hihointerview27/problems 题目1 : Big Plus 题目1 : Big Plus 描述 Given an NxN 01 matrix, find th ...
分类:
编程语言 时间:
2016-12-25 23:31:11
阅读次数:
246
Below is the example to create an excel file in Oracle Forms.Pass the Sql query string to the below procedure to generate an Excel file using Ole2 pac... ...
分类:
数据库 时间:
2016-12-25 18:11:20
阅读次数:
215