本月博客排行
年度博客排行
-
第1名
宏天软件 -
第2名
龙儿筝 -
第3名
青否云后端云 - wallimn
- vipbooks
- gashero
- wy_19921005
- benladeng5225
- fantaxy025025
- zysnba
- e_e
- javashop
- sam123456gz
- tanling8334
- arpenker
- kaizi1992
- xpenxpen
- lemonhandsome
- xiangjie88
- ganxueyun
- xyuma
- sichunli_030
- wangchen.ily
- jh108020
- Xeden
- johnsmith9th
- zxq_2017
- zhanjia
- jbosscn
- forestqqqq
- luxurioust
- lzyfn123
- ajinn
- wjianwei666
- daizj
- ranbuijj
- 喧嚣求静
- silverend
- kingwell.leng
- lchb139128
- kristy_yy
- lich0079
- jveqi
- java-007
- sunj
- yeluowuhen
- lerf
- ssydxa219
- lstcyzj
- flashsing123
最新文章列表
javascript 常用自定义方法
javascript 常用的自定义方法
(1)在页面获取cookie
//get value of cookie
com.whuang.hsj.getCookie=function(cookieKey){
var cookies = document.cookie ? document.cookie.split('; ') : [];
for (va ...
使用string.EndsWith方法是别忘了用StringComparison.Ordinal!
今天项目(C#项目)中遇到了一个性能问题,在对一个10万字左右文本解析时速度特别慢,用Profiler调查了一下原来大多时间都用在了String.EndsWith这个方法上。 大家现在看下面一段程序。
var sb = new StringBuilder(100000);
for (var i = 0; i < 10000; ...
prototype的解读之String的几个检索api
本篇简单地列举了prototype的几个String下检索的api:
1、include(substring)
------判断字符串是否还有指定的参数字符串。返回的是Boolean。
/*
@example
'Zhangyaochun'.include('an'); //true
*/
源码:
/*
其实就是原生的i ...