I am getting an 'infinite loop' with the below regex expression in the Textparser
module in Integromat.
(?<=\n)(.*)(?=\nA|B)
I know it is due to the | , but unsure the other options in Integromat.
I am getting an 'infinite loop' with the below regex expression in the Textparser
module in Integromat.
(?<=\n)(.*)(?=\nA|B)
I know it is due to the | , but unsure the other options in Integromat.
Try the pattern like
EXPLANATION