0

I want to find all the lines in .java, .jsp file using Textpad where in

start of the line is //
end of the line is ;

e.g.

// logger.debug("rowData: "+rowData);

Can it be done using Regex Match in Text Pad? or do I need to write a Perl Program, Please suggest

Don Roby
  • 40,677
  • 6
  • 91
  • 113
Sandeep540
  • 897
  • 3
  • 13
  • 38

1 Answers1

0

Use the following regex with multiline option

^\s*//.*?;
Anirudha
  • 32,393
  • 7
  • 68
  • 89