preg match - insert english words in single div using php
one text
Solution:
This updated RegEx should capture the whole string instead of a single word.
/[\w\s].[\w\s]+/ig
Sourceone text
This updated RegEx should capture the whole string instead of a single word.
/[\w\s].[\w\s]+/ig
Source