On Thursday, January 3, 2019 at 10:34:01 PM UTC+1, Senjuu wrote: > > It would. > > From "+CHANGED: The password could only hold forty(40) characters (#10)" > the regex "\(#\d+\) > would match "(#10)" >
Ok, I see your problem. But why are you capturing the whole string? You could just try this: \(#(\d+)\) to catch the message part expression (\d+) to then catch the number -- You received this message because you are subscribed to the Google Groups "TortoiseSVN" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/tortoisesvn/57deae96-3b92-4b73-bdea-ffce1353c35f%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
