I’m trying to get the string between a certain word “pattern” and the end of that line, I tried using \r\n but it doesn’t work, when I export the code it appears as \\r\n somehow. The only workaround I have found is to use the first word of the following line as the 2nd string of the string between action, and use the split string action with end of line as the “splitter”, but then again, I would get an array, and I can’t seem to find a way to put the first value of that array on a string variable, and since i’m doing this with several texts I would had to use an array of arrays to store them so that I could easily use them later on, which doesn’t exist, plus, I have no guarantees that the first word of the next line is always the same.
What I really need is a way to go through these several texts, and append the word between “pattern” and the end of that line on an array. So that this array will be later on iterated and treated properly.