0

このコードを 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

聖書の本の章節を表す

ありがとう

4

1 に答える 1

1

使用するmatch

"7 Genesis 16:23".match(/^(.*?)\s+(\d+):(\d+)$/)
Output: ["7 Genesis 16:23", "7 Genesis", "16", "23"]
于 2012-06-14T15:08:14.323 に答える