Как разделить пробел на предложения, но сохранить символ новой строки (\n
) как отдельное слово?
Ввод:
I am a sentence.\nBefore me, there is a newline. I would like this sentence to be the following:\n\n Look below
Вывод:
Array: ['I', 'am', 'a', 'sentence.', '\n', 'Before', 'me,', 'there', 'is', 'a', 'newline.', 'I', 'would', 'like', 'this', 'sentence', 'to', 'be', 'the', 'following:', '\n', '\n', 'Look', 'below'