Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
319 views

How to strip headers/footers from Project Gutenberg texts?

I've tried various methods to strip the license from Project Gutenberg texts, for use as a corpus for a language learning project, but I can't seem to come up with an unsupervised, reliable approach. ...
2
votes
2answers
104 views

Strip Linux kernel sources according to .config

Is there any efficient way (maybe by abusing the gcc preprocessor?) to get a set of stripped kernel sources where all code not needed according to .config is left out?
1
vote
0answers
15 views

TinyMCE stripping embed code in Drupal 6 using Wysiwyg module

I have a Drupal 6 installation with a Wysiwyg profile set up to use TinyMCE. The profile has the media button turned on. I have defined the Filtered HTML input format to allow the <embed>, ...
1
vote
1answer
134 views

How do I obtain the GNU gsed command in Solaris Unix

Im trying to use the gsed -n '1~4p' command to only print that line which appears every 8 lines, but apparently it can only be done with a GNU sed, but It doesn't seem that I have one, How would I ...
1
vote
3answers
419 views

How can I strip block comments with Perl?

I am working on a preprocessor that is analyzing a DSL. My goal is to remove the comments. The block comment facility is demarcated by %% before and after. I do not have to worry about %% being in ...
0
votes
2answers
39 views

stripping singular / from a csv file

I have a csv file which has a few areas where / proceeded by nothing and proceeded by nothing that I'd like to strip out. The catch is, I also have other items in the file which have a / that I don't ...
0
votes
1answer
83 views

Stripping the end of a url in the .htaccess file

I have a problem hundreds of 404 errors on my site that are caused by the expressions "URLONCLICK" and "%5C" being somehow inserted at the end of the correct url, and I don't know where it is coming ...
0
votes
2answers
106 views

Why does javascript strip out my dyamically javascript?

I have a javaScript that calls a function: var combineddata = jQueryGetHtml(); The function is: // Get ALL of the HTML using jQuery var jQueryGetHtml = function() { var htmlStartTag = ...
0
votes
3answers
821 views

(php) regexto remove comments but ignore occurances within strings

I am writing a comment-stripper and trying to accommodate for all needs here. I have the below stack of code which removes pretty much all comments, but it actually goes too far. A lot of time was ...
-1
votes
2answers
114 views

Perl AJAX stripping html characters out of string?

I have a Perl program that is reading html tags from a text file. (im pretty sure this is working because when i run the perl program on the command line it prints out the HTML like it should be.) I ...