Tìm ra vị tri đầu tiên của "chuỗi_tìm" trên "$haystack" và cắt lấy nó tới đầu hoặc cuối chuỗi "$haystack" thông qua thuộc tính "$before_needle"
code xtscript
Mã:
Note: thuộc tính "$before_needle" quy định chiều cắt từ "chuỗi_tìm" tới đầu khi nó bằng 1, hoặc tới cuối khi nó bằng 0 (hoặc ko xuất hiện thuộc tính này).
VÍ DỤ
Mã:
<!--parser:xtscript-->
var $bmt24h = call strstr $haystack=abcde; $needle=c; $before_needle=1
print $bmt24h<!--/parser:xtscript-->
Copy code
var $bmt24h = call strstr $haystack=abcde; $needle=c; $before_needle=1
print $bmt24h<!--/parser:xtscript-->
Copy code
kết quả 'ab'
VÍ DỤ 2
Mã:
<!--parser:xtscript-->
var $bmt24h = call strstr $haystack=abcde; $needle=c; $before_needle=2
print $bmt24h<!--/parser:xtscript-->
Copy code
var $bmt24h = call strstr $haystack=abcde; $needle=c; $before_needle=2
print $bmt24h<!--/parser:xtscript-->
Copy code
kết quả 'cde'
Stristr giống strstr nhưng không phân biệt hoa thường.
Mã:
vậy là xong các bạn nếu lần đầu thì hãy xem từ bài 1 tại Tự Học Xtscript