0?$matches[0]:''; function CheckSubstrs($substrs,$text){ foreach($substrs as $substr) if(false!==strpos($text,$substr...
分类:
移动开发 时间:
2014-10-18 09:41:37
阅读次数:
205
String.prototype.replaceCharAt = function(n,c){return this.substr(0, n)+ c + this.substr(n+1,this.length-1-n);}
分类:
编程语言 时间:
2014-10-16 15:18:13
阅读次数:
274
var a = $("#stringa").text(); if(a.length>8) { var b = a.substr(0,8); $("#stringa").text(b+"..");...
分类:
Web程序 时间:
2014-10-15 20:09:11
阅读次数:
254
过滤DEDE后台自己添加的Class文件和HTML代码:{dede:sql sql='Select content from #@__arctype where id=1'} [field:content function='cn_substr(html2text(@me),800)'/]...
分类:
其他好文 时间:
2014-10-14 16:33:28
阅读次数:
258
(function($){ $.getUrlParam = function(name) { var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)"); var r = window.location.search.substr(1).matc...
分类:
Web程序 时间:
2014-10-12 23:24:58
阅读次数:
205
#!/bin/sh
# Find ip
IP=`/sbin/ifconfig eth1 | grep 'inet addr' | awk '{ print substr($2, index($2, ":")+1)}'`
#monitor procname scriptname
monitor()
{
procname=$1
scriptname=$2
# Find proc by p...
分类:
Web程序 时间:
2014-10-12 10:46:07
阅读次数:
267
Js的substring和C#的Substring的作用都是从一个字符串中截取出一个子字符串,但它们的用法却有非常大的不同,下边我们来比較看看:Js的substring语法:程序代码String.substring(start, end)说明:返回一个从start開始到end(不包括end)的子字符...
分类:
Web程序 时间:
2014-10-11 23:33:37
阅读次数:
218
#!/bin/sh
my_ip=`/sbin/ifconfig eth1 | grep 'inet addr' | awk '{print substr($2, index($2, ":")+1)}'`
recv=""
msg="not_existing, restart ..."
MONITOR_LOG="monitor.log"
#monitor procname scriptname...
分类:
系统相关 时间:
2014-10-11 23:25:07
阅读次数:
329
Js的substring和C#的Substring的作用都是从一个字符串中截取出一个子字符串,但它们的用法却有非常大的不同,下边我们来比較看看:Js的substring语法:程序代码String.substring(start, end)说明:返回一个从start開始到end(不包括end)的子字符...
分类:
Web程序 时间:
2014-10-11 13:03:55
阅读次数:
189
原创作品,出自 “深蓝的blog” 博客,欢迎转载,转载时请务必注明出处,否则追究版权法律责任。
深蓝的blog:
【格式】
截取函数,可以实现提取字符串中指定的字符数
substr( string, start_position, [ length ] )
string:源字符串
start_position:提取的位置,字符串中第一个位置始终为1
[ length ]:提取...
分类:
数据库 时间:
2014-10-10 21:04:14
阅读次数:
671