Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have the code:

$txt = "lookSTARTfromhereSTARTagainhere";

$disp = str_split($txt, 4); 

for ($b = 0; $b<3; $b++) {
    echo "$disp[$b]"; 
} 

which return 'look', 'STAR' 'Tfor' in a text line of 'lookSTARTfromhereSTARTagainhere' my problem is how do i start my text split from 'START' example my result output for text line of 'lookSTARTfromhereSTARTagainhere' after split look like 'from' 'here' 'again' thanks for your time and understanding

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
290 views
Welcome To Ask or Share your Answers For Others

1 Answer

it may not be possible by str_split as 'again' has 5 characters. you can get 'from', 'here' by following code.

$txt = "lookSTARTfromhereSTARTagainhere";
$txt = str_replace('look','',$txt);
$txt = str_replace('START','',$txt);
$disp = str_split($txt, 4); 
for ($b = 0; $b<3; $b++) {
    echo "$disp[$b]"; 
} 

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...