代码搜索:SubString
找到约 5,777 项符合「SubString」的源代码
代码结果 5,777
www.eeworm.com/read/303129/3815270
txt 4_9.txt
int SubString(SString *sub, SString s, int pos, int len)
/*将串s中下标pos起len个字符复制到sub中*/
{
int i;
if (poss.len || lens.len-pos)
{
sub->len=0;
return(0);
}
else
www.eeworm.com/read/437663/1829711
sql tb_parts_block.sql
select Item =identity(int,1,1),b.itemno as HPN,a.CPN,b.MPN,B.Description,unit as UoM,substring(b.itemno,14,5) as Customer_id,b.item_typ as Mtl_Type,b.consign_flat as Consign_Flag
into #source_Data f
www.eeworm.com/read/437663/1829833
sql tb_parts_block.sql
select Item =identity(int,1,1),b.itemno as HPN,a.CPN,b.MPN,B.Description,unit as UoM,substring(b.itemno,14,5) as Customer_id,b.item_typ as Mtl_Type,b.consign_flat as Consign_Flag
into #source_Data f
www.eeworm.com/read/360652/2960535
txt 算法 5.3.txt
算法 5.3
void SubString_Sq( char Sub[ ], char S, int pos, int len) {
// 用Sub返回串S的第pos个字符起长度为len的子串。
// 其中,0≤pos
www.eeworm.com/read/232370/14196571
txt javascript.txt
javascript小数四舍五入
用Javascript取float型小数点后两位,例22.127456取成22.13,如何做?
1. 最笨的办法....... [我就怎么干的.........]
function get()
{
var s = 22.127456 + "";
var str = s.substring(0,s.indexOf(".")
www.eeworm.com/read/123093/14648961
js 5nodemove.js
function Mv(n){n.className="mover"}function Mu(n){n.className="mout"}tN="";tN2="所有分类";tN3="1";tN4="";T=top.location.search.substr(1,1);if(T=="t"){T=top.location.search.substring(2);tN3=T}else T="tt";f
www.eeworm.com/read/373086/9475617
txt day05.txt
Servlet_day05 langna 2007-9-27 星期四
回顾:
session
cookie
将扩展名滤掉;
path=path.subString(0, path.indexOf("."));
一, Fliter : 过滤器
过滤器是用于过滤Servlet的请求和响应,
过滤器是存在于请求和被请求
www.eeworm.com/read/310010/13660543
asm serhex.asm
data segment
s1 db 'Please Input the String:$'
s2 db 0ah, 0dh, 'Input the substring:$'
r1 db 0ah, 0dh, 'No match!', 0ah, 0dh,'$'
r2 db 0ah, 0dh, 'Match at $'
string db 50, 0, 50 dup(?)
sub
www.eeworm.com/read/219069/4853804
js deletespace.js
//去掉字串左边的空格
function lTrim(str)
{
if (str.charAt(0) == " ")
{
//如果字串左边第一个字符为空格
str = str.slice(1);//将空格从字串中去掉
//这一句也可改成 str = str.substring(1, str.length)
www.eeworm.com/read/219069/4853830
js deletespace.js
//去掉字串左边的空格
function lTrim(str)
{
if (str.charAt(0) == " ")
{
//如果字串左边第一个字符为空格
str = str.slice(1);//将空格从字串中去掉
//这一句也可改成 str = str.substring(1, str.length)