So I have a paragraph, from which I would like to extract a few sentences via formula.
The reason for this is that I need to copy the sentences in the middle and insert them into other pieces of text. I need to do this a lot of times, for text in several languages I do not read, which makes it annoying to do visually.
While the number of characters will vary a lot language to language, the number of sentences is the same, so I had hoped to use periods and REGEX to isolate the sentences I need. Basically I have:
> This is the first sentence. Here’s another sentence. Beginning of the part I need. I also need this. Here’s a sentence I don’t need. <!--more-->
I can use Regex and LEN to get rid of the <!--more-->, but it seems like going further than that is beyond my current skill.
Any ideas?