<?php $text = 'Hebrews 11.6 2 Chronicles 10.16 Romans 13.13 2 Kings 5.10 3 John 1.5'; if (preg_match_all('~^(.*?)\h*(\d+)\.(\d+)$~m', $text, $ms, PREG_SET_ORDER, 0)) { foreach ($ms as $m) { $book=$m[1]; $chapter=$m[2]; $verse=$m[3]; echo "Book $book chapter $chapter verse $verse\n"; } }
You have javascript disabled. You will not be able to edit any code.