特定の形式 ( ) に従うヘッダーに基づいて、文字列をセクションに分割したいと考えています==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"]
これは正しくありません。私のコードは複雑すぎるのではないかと感じています。これを行うためのより良い方法はありますか?