Page 1 of 1

regex for verilog error line

Posted: Sat Jun 10, 2006 8:47 pm
by evok
hello

i'm using textpad for compiling verilog
now i 've got troubles if i want my textpad to jump to the error line displayed in the errormessage
the errormsg looks like following:

C:\Dokumente und Einstellungen\admin\Desktop\koschu14m2.v: L428: error: Illegal output port specification: '(null)'

where C:\doku...m2.v describes the file and L428 describes the line number,
now i created that regex
^(.*\.v): L([0-9]*): .*$
to match that both registers,
it works in every testenvironment but not in textpad,
maybe you can help me
thanks
PS: sorry for my bad english :lol:

Posted: Sat Jun 10, 2006 9:16 pm
by ben_josephs
That regular expression uses Posix regular expression syntax. You need to change your preferences:
Configure | Preferences | Editor

[X] Use POSIX regular expression syntax

yeah

Posted: Sun Jun 11, 2006 8:55 pm
by evok
yeah it works
thank you
harry