Tagged Questions
0
votes
3answers
122 views
Regexp match strickly html comment string
I'am trying to use regexp to strip all html comments from .html file.
As we know html comments format are <!-- some comments -->
I've create such regexp
/<!--.*-->/gs
It works, but if ...
0
votes
0answers
235 views
PHP Strip html comment except javascript
I'm trying to strip all html comment to compress output result in 1 line.
but when i strip html comment by PHP. that strip javascript also :(
here's example javascript code.
<script ...
0
votes
2answers
306 views
How to strip blank and comment lines from text file during maven compile process?
I have a set of text files I merge into a big text file with the maven-antrun-plugin. Yet, I would like to strip empty line and comment lines.
For example:
# Comment 1
ddd=3;
# More comment
eee=4;
...
3
votes
1answer
389 views
Regex to strip phpdoc multiline comment
I have this:
/**
* @file
* API for loading and interacting with modules.
* More explaination here.
*
* @author Reveller <me@localhost>
* @version 19:05 28-12-2008
*/
I'm looking for a ...
5
votes
5answers
3k views
Stripping HTML Comments With PHP But Leaving Conditionals
I'm currently using PHP and a regular expression to strip out all HTML comments from a page. The script works well... a little too well. It strips out all comments including my conditional comments in ...
19
votes
6answers
15k views
Best way to automatically remove comments from PHP code
Whats the best way to remove comments from a PHP file?
I want to do something similar to strip-whitespace() - but it shouldn't remove the line breaks as well.
EG:
I want this:
<?PHP
// ...
3
votes
4answers
663 views
Strip Comments from XML
I've encountered the need to remove comments of the form:
<!-- Foo
Bar -->
I'd like to use a regular expression that matches anything (including line breaks) between the beginning ...