代码搜索:SubString
找到约 5,777 项符合「SubString」的源代码
代码结果 5,777
www.eeworm.com/read/207238/15278442
sqm function_substring.sqm
www.eeworm.com/read/207238/15278463
sql function_substring.sql
/*This SQL script uses Demos.abs database.
Please open ...\AbsoluteDatabase\Demos\Data\Demos.abs database file.
This sample illustrates use of SUBSTRING function.
The query retrieves events"
www.eeworm.com/read/490550/1197832
js find_substring.js
var a = "This sentence contains a substring.";
var b = a.indexOf("sentence");
alert("String: " + a + "\nThe substring \"sentence\" starts at: " + b);
www.eeworm.com/read/162614/5526192
f constant_substring.f
! Simplify constant substring
! { dg-do run }
character*2 a
character*4 b
character*6 c
parameter (a="12")
parameter (b = a(1:2))
write (c,'("#",A,"#")') b
if
www.eeworm.com/read/311226/3687048
rq substring-3.rq
PREFIX jfn:
PREFIX :
SELECT ?p ?v
{ :x ?p ?v .
FILTER ( jfn:substr(?v,9) )
}
www.eeworm.com/read/311226/3687056
rq substring-1.rq
PREFIX jfn:
PREFIX :
SELECT ?p ?v
{ :x ?p ?v .
FILTER ( jfn:substring(?v,1,2) < "g")
}