The tag has no wiki summary.

learn more… | top users | synonyms

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 // ...
14
votes
3answers
9k views

What is “strip” (GCC application) used for?

what is this little application for? When using it without any options reduces the size of the executables, but how/what it does?
25
votes
8answers
11k views

C/C++ gcc & ld - remove unused symbols

I need to optimize the size of my executable severely (ARM development) and I noticed that in my current build scheme (gcc + ld) unused symbols are not getting stripped. The usage of the arm-strip ...
10
votes
2answers
5k views

Strip HTML tags and its contents

I'm using DOM to parse string. I need function that strips span tags and its contents. For example, if I have: This is some text that contains photo. <span class='title'> ...
7
votes
4answers
7k views

Stripping all html tags with Html Agility Pack

I have a html string like this: <html><body><p>foo <a href='http://www.example.com'>bar</a> baz</p></body></html> I wish to strip all html tags so ...
40
votes
7answers
46k views

String strip() for javascript?

What's a clean and efficient Javascript implementation to strip leading and trailing spaces from a string? For example: " dog" "dog " " dog " " dog " all get turned into "dog"
14
votes
6answers
5k views

Python's equivalent to PHP's strip_tags?

Python's equivalent to PHP's strip_tags? http://php.net/manual/en/function.strip-tags.php
6
votes
4answers
6k views

How to remove whitespace from right end of NSString?

This removes white space from both ends of a string: NSString *newString = [oldString stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]]; How do I remove white space ...
17
votes
5answers
6k views

Stripping linux shared libraries

We've recently been asked to ship a Linux version of one of our libraries, previously we've developed under Linux and shipped for Windows where deploying libraries is generally a lot easier. The ...
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 ...
3
votes
6answers
2k views

C# Stripping / converting one or more characters

Is there a fast way (without having to explicitly looping through each character in a string) and either stripping or keeping it. In Visual FoxPro, there is a function CHRTRAN() that does it great. ...
2
votes
3answers
75 views

How to strip comma in Python string

How can I strip the comma from a Python string such as Foo, bar? I tried 'Foo, bar'.strip(','), but it didn't work.
0
votes
2answers
186 views

PHP - DOM, stripping table from html [closed]

I have a curl script that ends like this: $data = curl_exec($ch); curl_close($ch); return $data; } The $data string it a HTML page with a table on that I want to strip so that I can store ...
10
votes
5answers
4k views

How to escape/strip special characters in the LaTeX document?

We implemented the online service where it is possible to generate PDF with predefined structure. The user can choose a LaTeX template and then compile it with an appropriate inputs. The question we ...
7
votes
2answers
8k views

gcc -s and bash command strip

I wonder what is the difference between these two: gcc -s: Remove all symbol table and relocation information from the executable. strip: Discard symbols from object files. Are they having the ...
5
votes
3answers
4k views

Xcode: Should I Strip Debug Symbols During Copy?

The TestFlight SDK recommends setting Strip Debug Symbols During Copy to YES in Xcode Build Settings to enable the best crash reporting possible. I noticed that it's set to YES by default. Should I ...
7
votes
2answers
4k views

Strip symbols for iPhone application

What are the settings in Xcode to strip symbols for an iphone application? I use these settings in Xcode but still see classnames and their methods in the executable using a binary file editor. ...
13
votes
1answer
587 views

can I change the position of the strip label in ggplot from the top to the bottom?

I know this is not quite a data visualization issue, but the boss asked for it, so I need to figure out if it is possible. Thanks!
11
votes
4answers
4k views

How can I use strip_tags in regular ruby code (non-rails)?

I need to turn html into plain text and theres a nice function that does that in ActionView's SanitizeHelper. But I have trouble understanding how I can reference it and use it in a simple test.rb ...
7
votes
3answers
5k views

How to strip all non alphanumeric characters from a string in c++?

I am writing a piece of software, and It require me to handle data I get from a webpage with libcurl. When I get the data, for some reason it has extra line breaks in it. I need to figure out a way to ...
4
votes
4answers
817 views

How to detect at runtime whether symbols are stripped?

In my C++ program, how can I detect programmatically at runtime whether symbols have been stripped via the 'strip' gnu development tool on Linux? I'd like a function definition which returns true if ...
1
vote
1answer
2k views

Does objective c have a strip tags function?

I am looking for an objective C function (custom or built-in) that strips html tags from a string, similar to PHP's version that can be found here: http://php.net/manual/en/function.strip-tags.php ...
11
votes
2answers
5k views

MATLAB - Remove Leading and Trailing Zeros From a Vector

I have a wavelet function with leading and trailing zeros. I would like to strip all the zeros which occur before or after the wavelet. However, I would not like to remove any zeros within the ...
6
votes
4answers
2k views

How to REALLY strip a binary in MacOs

MacOs 10.6, if I have a file "unwanted.c" which contains: class secret_thing { public: secret_thing() {} void revealing_method_name() {} }; main() { secret_thing obj; ...
5
votes
3answers
2k views

Ruby string strip defined characters

in Python, we can e.g. "[foo ]".strip(" []") # -> "foo" how do we do this in Ruby? string strip method is stripping only whitespace .. UPDATE stripping is not deleting! : ) "[ foo boo ...
5
votes
2answers
2k views

Strip whitespace in generated HTML using pure Python code

I am using Jinja2 to generate HTML files which are typically very huge in size. I noticed that the generated HTML had a lot of whitespace. Is there a pure-Python tool that I can use to minimize this ...
4
votes
4answers
6k views

Delete first character and last character from String PHP

I need to delete the first 3 letters of a string and the last 3 letters of a string. I know I can use substr() to start at a certain character but if I need to strip both first and last characters i'm ...
3
votes
7answers
7k views

python How can I strip first and last double quotes

I want to strip double quotes from string = '"" " " ""\\1" " "" ""' to become string = '" " " ""\\1" " "" "' I tried to use rstrip, lstrip and strip('[^\"]|[\"$]') but it did not work. How can ...
2
votes
5answers
2k views

How to remove tags from a string in python using regular expressions? (NOT in HTML)

I need to remove tags from a string in python. <FNT name="Century Schoolbook" size="22">Title</FNT> What is the most efficient way to remove the entire tag on both ends, leaving only ...
2
votes
2answers
1k views

How to strip HTML attributes except “src” and “alt” in JAVA

How do I strip all attributes from HTML tags in a string, except "alt" and "src" using Java? And further.. how do I get the content from all "src" attributes in the string? :)
0
votes
1answer
256 views

strip characters from url on javascript 'onclick'-command

I'm afraid this may be a very stupid question. I want to refer people via a pop-up and automatically fetch the url from the current document (so that I don't have to adapt the code to every page). ...
3
votes
2answers
580 views

How to use strip_tags with second parameter in CodeIgniter?

How to strip HTML tags, but not all tags? For example i want to have <br>, <b> etc in textareas. I have this form validation rule: $this->form_validation->set_rules('user_desc', ...
3
votes
2answers
2k views

Extracting all text from a powerpoint file in VBA

I have a huge set of powerpoint files from which I want to extract all the text and just lump it all into one big text file. Each source (PPT) file has multiple pages (slides). I do not care about ...
3
votes
5answers
3k views

Is there an easy way to strip HTML from a QString in Qt?

I have a QString with some HTML in it... is there an easy way to strip the HTML from it? I basically want just the actual text content. <i>Test:</i><img src="blah.png" /><br> ...
2
votes
2answers
331 views

Typing text effect with formatting: skip HTML tags, but don't remove

I am trying to provide a simple way to get a typing text effect, but with the possibility to allow HTML tags too. I have some code that works, but I see the tags are being considered part of the text. ...
2
votes
1answer
170 views

What happens when I strip one version of a mercurial repository and try to synchronize with another one?

I know what happened to me when I did it. The synchronization was apparently successful, because no warnings were generated, but when I cloned the remote repository I saw that the synchronization ...
1
vote
7answers
2k views

Strip in Python

I have a question regarding strip() in Python. I am trying to strip a semi-colon from a string, I know how to do this when the semi-colon is at the end of the string, but how would I do it if it is ...
1
vote
6answers
497 views

Strip Specific Punctuation in Python 2.x

I'm using Python v2.6 and I have a string which contains a number of punctuation characters I'd like to strip out. Now I've looked at using the string.punctuation() function but unfortunately, I want ...
1
vote
2answers
214 views

Rewrite Youtube URL

I have some YouTube URLs stored in a database that I need to rewrite. They are stored in this format: $http://youtu.be/IkZuQ-aTIs0 I need to have them re-written to look like this: ...
1
vote
2answers
135 views

strip a word when is a single word only, not part of a composite word

I have the following function, I want it to strip "alpha" when is a single word only and not a part of a composite word like "alphadog". Now instead I just see "dog" and it's not good. Any help? ...
1
vote
1answer
1k views

strip span tags from string with jquery

I am wanting to take the text value of a p tag when I press enter $.keynav.enterDown = function () { var accom = $('#suggestions p.keynavon').html(); alert(accom); } This is working great but ...
1
vote
2answers
620 views

Regular expression to strip everything but words

I'm helpless on regular expressions so please help me on this problem. Basically I am downloading web pages and rss feeds and want to strip everything except plain words. No periods, commas, if, ...
1
vote
3answers
778 views

How can you strip HTML comments out of a page generated with JSP/JSTL?

I know some people use ANT to accomplish this, but I don't want to remove HTML comments from the actual jsp, I just want a way to strip them from output unless a users adds a parameter to the url to ...
1
vote
1answer
3k views

Strip wav header in c#

I want to be able to strip off a header from a wav file. Is there any way to do this in C#?
0
votes
5answers
119 views

PHP - Strip a specific string out of a string

I've got this string, but I need to remove specific things out of it... Original String: hr-165-34.sh-290-92.ch-215-84.hd-180-1.lg-280-64. The string I need: sh-290-92.ch-215-84.lg-280-64. I need ...
0
votes
3answers
440 views

Strip YouTube Embed Code Down to URL Only

Please help! I need to strip the following code so that it only uses the "value" part $<object width="360" height="226"><param name="movie" ...
0
votes
3answers
112 views

Replace part of the string

Echo $var gives me something like http://342.234.243.142/data/somethingmore/ IP-address everytime is different. Instead of "somethingmore" can something like "/folder/images/2011/gallery/file.jpg" ...
0
votes
1answer
466 views

is there a DRY way to use strip on all :params when creating a new model in Rails?

I have a form to create a new Contact model. I enter the values by hand by cutting and pasting. Sometimes I end up adding white space on the left and right. Here is what is in the create controller ...
0
votes
2answers
677 views

Best C/C++ Library to defang HTML?

I'm looking for a C/C++ functional equivalent to HTML::Defang, and my Google-fu has not been able to uncover anything. I want to keep any benign tags and strip out/defang everything else. Lacking an ...