2Hi.Biz
Trang chủ
|
TWIG
|
Xtscript
|
Templates
|
Xtgem
Functions Xtscript
AiChat.Wap.Sh
strpos
Tìm vị trí của sự xuất hiện đầu tiên của một chuỗi con trong một chuỗi
[...] = optional ... = your value[var $... = ]call strpos $haystack=…;$needle=…[;$offset=…]
Code ví dụ:
<!--parser:xtscript-->
var $haystack = abefcdefghijklmnopqrstuvwxyz
var $needle = op
var $offset = 0
var $position = call strpos $haystack=$haystack; $needle=$needle; $offset=$offset ;
print haystack = $haystack<br />
print needle = $needle <br />
print offset = $offset <br />
print position = $position
<!--/parser:xtscript-->
<!--parser:xtscript--> var $haystack = abefcdefghijklmnopqrstuvwxyz var $needle = op var $offset = 0 var $position = call strpos $haystack=$haystack; $needle=$needle; $offset=$offset ; print haystack = $haystack<br /> print needle = $needle <br /> print offset = $offset <br /> print position = $position <!--/parser:xtscript-->
Code đã chạy:
haystack = abefcdefghijklmnopqrstuvwxyz
needle = op
offset = 0
position = 16