码迷,mamicode.com
首页 >  
搜索关键字:rep    ( 1080个结果
JS正则
test 判断字符串是否符合规定的正则 exec 获取匹配的数据 例子: test例子 rep = /\d+/; //只要有数字就返回truerep.test("asdkfasdkf9999")truerep.test("asdkfasdkf")false rep = /^\d+$/; //全部是数 ...
分类:Web程序   时间:2018-07-10 20:08:24    阅读次数:153
Fragment切换返回
1.开发中遇到需要在Fragment之间切换,保存状态(1).初始化Fragment:public void initFragment(){ FragmentTransaction ft = getSupportFragmentManager().beginTransaction(); ft.rep... ...
分类:其他好文   时间:2018-07-10 14:43:49    阅读次数:158
UVA10498 Happiness 【单纯形】
题目链接 "UVA10498" 题解 模板题 cpp include include include include include include include include include define LL long long int define REP(i,n) for (int i ...
分类:移动开发   时间:2018-07-05 21:28:46    阅读次数:243
pandas的to_csv()使用细节和一些参数
dt.to_csv('C:/Users/think/Desktop/Result.csv',sep='?')#使用?分隔需要保存的数据,如果不写,默认是, dt.to_csv('C:/Users/think/Desktop/Result1.csv',na_rep='NA') #确实值保存为NA,如果... ...
分类:其他好文   时间:2018-07-03 16:51:38    阅读次数:4381
CSU1911 Card Game 【FWT】
题目链接 "CSU1911" 题解 FWT模板题 cpp include include include include include include include include include define LL long long int define REP(i,n) for (int ...
分类:其他好文   时间:2018-07-03 11:59:12    阅读次数:216
codeforces 17C Balance
codeforces 17C Balance 题意 题解 代码 c++ include using namespace std; define fi first define se second define mp make_pair define pb push_back define rep(i ...
分类:其他好文   时间:2018-07-02 20:15:25    阅读次数:179
codeforces 156D Clues
codeforces 156D Clues 题意 题解 代码 c++ include using namespace std; define fi first define se second define mp make_pair define pb push_back define rep(i, ...
分类:其他好文   时间:2018-06-29 20:37:41    阅读次数:151
正则表达式的陷阱
String str = "com.cn.xxx"; String[] strs = str.split("\\."); 将字符串以点号进行分割,需要用\\进行转义,不然点号指的是可以匹配任意字符。 String类的matches(String regex),参数是正则表达式。特别需要注意的是rep ...
分类:其他好文   时间:2018-06-29 01:19:00    阅读次数:144
记一次通过c#运用GraphQL调用Github api
阅读目录 GraphQL是什么 .net下如何运用GraphQL 运用GraphQL调用Github api 结语 一、Graphql是什么 最近在折腾使用Github api做个微信小程序练练手,本篇文章就是在这个过程中记录。 直接先看下GraphQL的语法风格,感受一下: query { rep ...
分类:Windows程序   时间:2018-06-26 10:53:12    阅读次数:246
搭建本地SVN服务器
SVN服务端 软件来源:https://www.visualsvn.com/server/download/ 安装步骤: 安装后: 改服务器IP为本地IP 新建user 创建rep加入用户 客户端连接 SVN客户端 软件来源:https://tortoisesvn.net/downloads.htm ...
分类:其他好文   时间:2018-06-23 01:29:24    阅读次数:181
1080条   上一页 1 ... 27 28 29 30 31 ... 108 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!