I am using Strong manipulation Node. I try to use a Regex Expression.
regexReplace($new column2$,“.*(\n|.)*Besz.*et.oss.\n” ," " )
This expression delete all text from cells from start to end of the specified lines.
The problem is, one row doesn’t works, and i don’t know why? Previously (Friday) was java.lang.StackOverflowError message.
it’s hard to say by just looking. I suggest to go on https://regex101.com and test it there to see what you are (not) matching properly. Or replace confidential data from that cell with dummy data and share it here
That 7*) in row 169 is probably the reason as it’s different compared to the other rows. Also make sure that you use the correct syntax for the Regex in Java whereby you have to escape special chars, meaning: .*(\\n|.)*Besz.*et.oss.\\n
In that case, enter rows 145 and 169 in regex101 and see what’s happening and amend your Regex accordingly. If not successful, there is not much else we can do without having an anonymized sample data set/workflow.
does it work as expected on regex101? Maybe there is some hidden character that is for some reason breaking regular expression. Try narrowing down where is the issue in cell by removing certain data parts from it.