I simply need to replace:
<p>, <div>
with
\n<p>, \n<div>
in string with one single pattern replacing. Is it possible?
let string = "<p>hello</p> my <div>Doggy</div>"
let newString = string.replacingOccurrences(of: "<p>", with: "\n<p>").replacingOccurrences(of: "<div>", with: "\n<div>")
is there a better solution with regex?
p, div, ul, li, h1, h2with\n{tag}.