View previous topic :: View next topic |
Author |
Message |
akyahoo
Joined: 10 Nov 2009 Posts: 24 Location: Beijing, China
|
Posted: Sat May 22, 2010 9:56 pm Post subject: Who can delete the JavaScript in a .htm or .html file? |
|
|
The JavaScript inside a .htm file is quite awful, after saving a Webpage in my computer. I can delete the .js files in its folder. However, it is quite difficult to delete the JavaScript inside a .htm file, because its content is not fixed.
I can know that it always starts with:
<script
and ends with:
</script>
Akelpad can only replace fixed contents. Who can tell me how to use other tools to delete the JavaScript?

Last edited by akyahoo on Mon Jun 14, 2010 1:01 am; edited 2 times in total |
|
Back to top |
|
 |
ravenlaughs
Joined: 06 Sep 2008 Posts: 40
|
Posted: Sat May 22, 2010 10:33 pm Post subject: |
|
|
You can try something like Text Crawler, that uses regular expressions. One simpler tool that might work is Text Magician. Only use text Magician on copies! It can be a great help, though. |
|
Back to top |
|
 |
FeyFre
Joined: 07 Aug 2007 Posts: 2240 Location: Vinnitsa, Ukraine
|
Posted: Sun May 23, 2010 12:53 am Post subject: |
|
|
akyahoo
Try to use Scripts plugin, SearchReplace.js script(I forgot exact name). |
|
Back to top |
|
 |
cnnnc
Joined: 12 Jan 2008 Posts: 118 Location: Shantou, China
|
Posted: Tue May 25, 2010 12:57 am Post subject: Delete the JavaScript in a .htm or .html file |
|
|
Run SearchReplace.js and Try
Replace:
Code: | <script(.*\s)*?.*</script> |
With: (Empty this field)
Uncheck all CheckBox. Then click OK.
OK? |
|
Back to top |
|
 |
akyahoo
Joined: 10 Nov 2009 Posts: 24 Location: Beijing, China
|
Posted: Mon Jun 14, 2010 12:54 am Post subject: |
|
|
Thank you so much.
 |
|
Back to top |
|
 |
HastaLuego
Joined: 14 Aug 2010 Posts: 5 Location: Saratov
|
Posted: Sat Aug 14, 2010 9:01 am Post subject: |
|
|
Hi everyone , sorry , but SearchReplace.js seems doesn't work properly. It always workin' in a "greedy" style . May be I have an old version of a script ? And this construction doesn't work too :<script(.*\s)*?.*</script>
Offtopic:
And, besides, I wrote a script in PowerShell for adding to favorites (AP version 4.0.2,thus I think I'll do that in PS scripting language. |
|
Back to top |
|
 |
Xephon
Joined: 03 Jun 2008 Posts: 124
|
Posted: Sat Aug 14, 2010 10:44 am Post subject: |
|
|
SearchReplace.js works just fine, only the regexp was made lubberly. Use simpy Code: | <script.+?</script> |
|
|
Back to top |
|
 |
HastaLuego
Joined: 14 Aug 2010 Posts: 5 Location: Saratov
|
Posted: Sat Aug 14, 2010 5:01 pm Post subject: |
|
|
Just installed a newer version of AP and SearchReplace.js . All is working just fine . Thanks a lot !! Finally it's working!!!.
And where is a COM Object like AkelPad.document has gone? I used to use them in some of my PowerShell script, though they worked halfway, but nevertheless it allowed to adress to the system API functions. |
|
Back to top |
|
 |
FeyFre
Joined: 07 Aug 2007 Posts: 2240 Location: Vinnitsa, Ukraine
|
Posted: Sat Aug 14, 2010 8:05 pm Post subject: |
|
|
HastaLuego
You not need that COM-object. It is implicity built-in now in every script as Akelpad object.
Outside Akelpads plugin this object was and is unusable. |
|
Back to top |
|
 |
|