I'm want to use a Regex to split long string for seperated lines. Line can include any possible unicode character. Line is "ending" on dot ("." - one or more) or on new line ("\n").
Example:
This string will be the input:
"line1. line2.. line3... line4.... line5..... line6
\n
line7"
The output:
- "line1."
- "line2.."
- "line3..."
- "line4...."
- "line5....."
- "line6"
- "line7"