このコードを JavaScript に変換するのに助けが必要です。
<?php
$string = '7 Genesis 16:23';
if (preg_match('/^(.*?)\s+(\d+):(\d+)$/', $string, $match)) {
echo "You selected book {$match[1]}, chapter {$match[2]}, verse {$match[3]}!";
} else {
echo "I couldn't understand your input. Please use 'Book chapter:verse' format.";
}
これは、与えられた聖句を 1 ペテロ 1:1 の形で 3 つの部分に分けることです。
[0] = 1 Peter
[1] = 1
[2] = 1
聖書の本の章節を表す
ありがとう