I have this:
Something Something Something Something111
Something Something Something Something
Something Something Something Something222.
Something Something Something Something
Something Something Something Something333.
I need to start from Something111 and stop after the first occurence of "."
Right now i have this code:
(?<=Something111)((.|\n)*)\.
Which is returning all before the last "." so in this case all after "Something333"
But i need to stop after the first "." so in this case after "Something222"
So the returned text should be this:
Something Something Something Something111
Something Something Something Something
Something Something Something Something222.
I am working in UiPath Studio which uses VB.NET as language.