RE: [jug-discussion] Source code labeler/annotater

2003-03-20 Thread Tim Colson
FYI - Textpad (among others) have a "Find in Files" feature that will search all *.foo files in a dir and sub dirs on a windoze box... and you can use a regex in the search pattern. Timo - To unsubscribe, e-mail: [EMAIL PROTECTED

RE: [jug-discussion] Source code labeler/annotater

2003-03-18 Thread Matt Sponer
Hiya, Regular expressions made for this. This'll print all casts in a source tree (Unix or Cygwin): egrep ".*= *\(.*\).*;" `find . -name "*.java"` Changing this to a search and replace would allow you to add XML or output it as colorized HTML or something. If your not in one of those environments,