Hi
Using Geany as an IDE for assembly language programming with AVRA, an assembler for Atmel chips. Error messages take the form:
.../projects/SCADA_1/scada_2(414) : Error : Unknown mnemonic: bloggs
I need a regex to match the two groups 'scada_2' and '414' so that Geany can go to the source line with one click. Regex's are a nightmare to learn from scratch, so I'm hoping for a bit of help.
John Beatty
On 02.04.21 15:21, John Beatty via Users wrote:
Hi
Using Geany as an IDE for assembly language programming with AVRA, an assembler for Atmel chips. Error messages take the form:
.../projects/SCADA_1/scada_2(414) : Error : Unknown mnemonic: bloggs
I need a regex to match the two groups 'scada_2' and '414' so that Geany can go to the source line with one click. Regex's are a nightmare to learn from scratch, so I'm hoping for a bit of help.
Untestested -- I'd start with something like:
.*/(.*)/((\d+))
.f