配列要素を正規表現で結合することは可能ですか? もしそうなら、どうすればこれらの要件を達成できますか?
- 空の要素でない限り、すべての要素はスペース文字で結合する必要があります。
- 空の配列要素は、改行文字 (
\n
) で結合する必要があります。
つまり、次のようになります。
["Hello, this is a sentence.", "This is another sentence.", "", "", "Then, there are 2 new lines.","","Then just one new line."]
これに変換する必要があります.join
:
Hello, this is a sentence. This is another sentence.
Then, there are 2 new lines.
Then just one new line.