I have the following HTML:
<i>This is my first sentence.
This is my second sentence.</i>
Using Regex (in SublimeText FYI) how can I select only the whitespace (including line breaks) between the two <i></i> brackets?
I have got this far where I can select all the characters, but how do I limit it to whitespace and new lines only?:
(?<=<i.).*?(?=</i>)