I am looking to create a php script that detects twitter style hashtags from a chunk of text. So it would search for #then_a_word.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Using a regex and
preg_match_all(), you could have something like this :Which gives the following output :
And, if you need to do a bit more manipulations on those, you should take a look at the PCRE Functions section of the manual : there are some others that might help you.