-3

I have a text:

<p>Stackoverflow is the best</p>site

and I would like to get only

Stackoverflow is the best

I combine with:

/<p>[\s\S]+</p>/

but I get Stackoverflow is the best site.

[\s\S]+ <= it must be, because between <p> and </p> can be everything

Can you help me?

Thanks

Undo
  • 25,519
  • 37
  • 106
  • 129

1 Answers1

-2

Can you show the PHP code ? I think the regular expression should be:

<p>[\s\S]+<\/p>
AlexPham
  • 311
  • 2
  • 4
  • 16