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 a text string in the following format $str= "word1 word2 word3 word4 "

So i want to seperate each word from the string.Two words are seperated by a blank space How do i do that. IS there any built in function to do that?

See Question&Answers more detail:os

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

1 Answer

The easiest would be to use explode:

$words = explode(' ', $str);

But that does only accept fixed separators. split an preg_split do accept regular expressions so that your words can be separated by multiple spaces:

$words = split('s+', $str);
// or
$words = preg_split('/s+/', $str);

Now you can additionally remove leading and trailing spaces with trim:

$words = preg_split('/s+/', trim($str));

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

548k questions

547k answers

4 comments

86.3k users

...