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

Categories

0 votes
285 views
in Technique[技术] by (71.8m points)

php - How do i start text str_split after some characters

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

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

1 Answer

0 votes
by (71.8m points)

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]"; 
} 

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...