trim works fine for me:
$chapters = str_replace('課', '課 <br />', $chapters);
$chaptersRefined = str_replace(array('課', '第'), '', $chapters);
$chaptersArray = array_map('trim', explode('<br />', $chapters));
$chaptersRefinedArray = array_map('trim', explode('<br />', $chaptersRefined));
If you...