wrote:
> Hi,
> I have a lot of JSP files that serve as pure JavaScript code. I need to
> convert all JavaScript comments inside these JSP files to JSP comments
> which use <%-- // --%> tags. Instead of doing it manually, I would
> like to write a script/program that can detect the JS declarative
> comment structure and replace it with the equivalent JSP comment.
> However, I do not know how to start writing such kind of
> script/program. I would appreciate alot if you can suggest me some
> tool/program, Linux shell command or programming language (Perl,
> JavaScript, ...) that I can use. Is there any available program out
> there that is doing this task ?
>
> Thanks in advance,
> Tung Chau
Hi Tung,
Well, what you are asking for is a straightforward search-replace alghoritm,
right?
Such tasks are easy with scriptinglanguages like PHP or Perl.
Even VB-script should be able to do it.
My Perl suck these days, so if you can go PHP, have a look at:
http://nl2.php.net/manual/en/function.str-replace.php
and fopen() for opening.
try to make a program that opens all files, replaces your commentstags, and
then safes the file.
Regards,
Erwin Moller