Brian Estrada
12/11/2019, 1:32 PMdiesieben07
12/11/2019, 1:32 PMBrian Estrada
12/11/2019, 1:32 PM#{BOLD:Pumpkin and Orange}\r\nGrow combines sparkling
trying to come up with a regex rule to capture everything between # and the linebreakBrian Estrada
12/11/2019, 1:32 PM#(.*?)\r\nBrian Estrada
12/11/2019, 1:33 PMdiesieben07
12/11/2019, 1:34 PM\r\n matches carriage return and line break respectively. if you actually want to match the characters \r and \n you need \\r\\ndiesieben07
12/11/2019, 1:34 PMdiesieben07
12/11/2019, 1:35 PMBrian Estrada
12/11/2019, 1:35 PMBrian Estrada
12/11/2019, 1:35 PMdiesieben07
12/11/2019, 1:41 PMRuckus
12/11/2019, 2:33 PMBrian Estrada
12/11/2019, 2:34 PMHongKee Moon
12/11/2019, 3:51 PM([^#]+)(?=\\r\\n)