regex for verilog error line

General questions about using TextPad

Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard

Post Reply
evok
Posts: 3
Joined: Sat Jun 10, 2006 8:40 pm

regex for verilog error line

Post 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:
ben_josephs
Posts: 2461
Joined: Sun Mar 02, 2003 9:22 pm

Post 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
evok
Posts: 3
Joined: Sat Jun 10, 2006 8:40 pm

yeah

Post by evok »

yeah it works
thank you
harry
Post Reply