How to break sentence after full stop

I had a string type which is storing a string which is in paragraph form now my requirement is i want to enter that string on web but where if any fullstop comes the bot should enter the afterwords character in second line on web.
Like This is mango. This is orange. This is xyz. then bot should write on web like
This is mango
This is orange
This is xyz.

Replace the full stop with Environment.newline
variable.replace(".",Environment.Newline)

here variable will be your string

hi @Puneet_Singh
Use vblf to break the sentence.

Hope it helps!!

var1.replace(“.”,vblf)