fork download
  1. <?php
  2. $your_string_here = "“Chess helps us overcome difficulties and sufferings,” said Unnikrishnan, taking my queen. “On a chess board you are fighting. as we are also fighting the hardships in our daily life.”";
  3. $regex = '~“[^“”]+”(*SKIP)(*FAIL)|\.\s*~';
  4. $parts = preg_split($regex, $your_string_here);
  5.  
  6. print_r($parts);
  7. ?>
Success #stdin #stdout 0s 82944KB
stdin
Standard input is empty
stdout
Array
(
    [0] => “Chess helps us overcome difficulties and sufferings,” said Unnikrishnan, taking my queen
    [1] => “On a chess board you are fighting. as we are also fighting the hardships in our daily life.”
)