0

==HEADER==我想根据遵循特定格式( )的标题将字符串拆分为多个部分。这是输入字符串的样子:

== Section header ==
Text inside section
=== Maybe a nested section ===
With some more text
And more text
==Then the next section header, perhaps w/o spaces between text and equals signs==
With text inside it

这是我想要的输出:

[
    '== Section header ==
    Text inside section
    === Maybe a nested section ===
    With some more text
    And more text',
    '==Then the next section header, without spaces between text and equals signs==
    With text inside it'
]

我试着做

pagetext = "== Test header ==\n Some test text, with random equals signs==newlines\n or whatever\n ==Another header    ==   \n more text,\nnewlines\nohmy"
sections = [];
section_re = /==\s*(\s*[^=]*)\s*==/g;
var section_headers = pagetext.match(section_re);
for (var i = 0; i < section_headers.length; i++) {
    var section_start = pagetext.indexOf(section_headers[i]);
    var section_text = pagetext.substring(section_start);
    if (i < section_headers.length - 1) {
        var section_end = section_text.substring(section_headers[i].length).indexOf(section_headers[i + 1]) + section_headers[i].length;
        section_text = section_text.substring(0, section_end);
    }
    sections.push(section_text);
}

但它在“随机等号”符号上分裂,给了我:

 ["== Test header ==\n Some...ith random equals signs", "==newlines\n or whatever...ore text,\nnewlines\nohmy"]

这是不对的。我觉得我的代码可能太复杂了——有没有更好的方法来做到这一点?

4

2 回答 2

1

试试看

result = subject.match(/^==[^=]*?==$((\r?\n?)(?!==[^=]).*)*/img);
于 2013-10-08T21:51:10.420 回答
0

如果你觉得懒惰,你可以试试这个:https ://code.google.com/p/wiki2html/

我之前已经成功使用过。

于 2013-10-08T21:41:32.277 回答