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 的形式将给定的经文分成 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 回答