The strip tag has no wiki summary.
41
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"
25
votes
8answers
12k 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 ...
21
votes
1answer
1k views
gcc -g vs not -g and strip vs not strip, performance and memory usage?
If binary file size is not an issue, are there any drawbacks using -g and not strip binaries that are to be run in a performance critical environment? I have a lot of disk space but the binary is cpu ...
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
// ...
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 ...
15
votes
5answers
10k views
How to strip all whitespace from string
How do I strip all the spaces in a python string? For example, I want a string like strip my spaces to be turned into stripmyspaces, but I cannot seem to accomplish that with strip():
>>> ...
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
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?
13
votes
4answers
4k views
How to disassemble the main function of a stripped application?
Let's say I compiled the application below and stripped it's symbols.
#include <stdio.h>
int main()
{
printf("Hello\n");
}
Build procedure:
gcc -o hello hello.c
strip --strip-unneeded ...
13
votes
1answer
590 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
2k views
How to strip leading “./” in unix “find”? [closed]
find . -type f -print
prints out
./file1
./file2
./file3
Any way to make it print
file1
file2
file3
?
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 ...
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 ...
11
votes
4answers
949 views
How to remove whitespace from Model attributes?
What's the simplest way to make sure models trim leading and trailing white space from string values.
One inconvenient way seems to be a before_save filter -- although for something as common as ...
10
votes
4answers
365 views
Is there a better way to use strip() on a list of strings? - python
For now i've been trying to perform strip() on a list of strings and i did this:
i = 0
for j in alist:
alist[i] = j.strip()
i+=1
Is there a better way of doing that?
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 ...
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'> ...
9
votes
7answers
916 views
How to decrease the size of generated binaries?
I know that there is an option "-Os" to "Optimize for size", but it has little affect, or even increase the size on some occasion :(
strip (or "-s" option) removes debug symbol table, which works ...
7
votes
5answers
770 views
Bug in Python's str.rstrip() function, or my own stupidity?
Either this is a bug, or I'm about to learn something new about how Python behaves. :)
I have a dictionary filled with key/value pairs. Each key has a unique prefix, ias_XX_XX_. I'm attempting to get ...
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 ...
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 ...
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 ...
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.
...
6
votes
9answers
9k views
How do you cut off text after a certain amount of characters in PHP?
I have two string that i want to limit to lets say the first 25 characters for example. Is there a way to cut off text after the 25th character and add a ... to the end of the string?
So ...
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 ...
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;
...
6
votes
2answers
499 views
Stripping empty tags from Plone content with Diazo
I have a Plone site, themed with plone.app.theming. The problem I have is that the design is quite strict and doesn't assume any empty <p> elements or any other nonsense TinyMCE outputs. Such ...
6
votes
2answers
189 views
mysql - select match the most characters
I don't know what function this is called but I am trying to select a row that matches/has the most characters for the output. Here is what I have tried.
select * from table where title like ...
6
votes
0answers
555 views
How to reverse the objdump's strip with only-keep-debug?
In modern linux almost all objects are stripped and splitted in two parts (two files). First is executable itself and second is debug symbols, stripped out from original ELF. Such files are created ...
5
votes
4answers
6k views
Strip spaces/tabs/newlines - python
I am trying to remove all spaces/tabs/newlines in python
I am using python2.7 on Linux.
I wrote this, that should do the job:
myString="I want to Remove all white \t spaces, new lines \n and tabs ...
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 ...
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 ...
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 ...
4
votes
4answers
559 views
Linux SED command in Bash script strips ' from string
I have been putting together a bash script and within it I need to update a file with some neccasary information. The command I am using is below:
sudo sed '
/end/ a\
First line to update\
param 1 ...
4
votes
4answers
819 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 ...
4
votes
2answers
695 views
R: How to change the text of strips in R's lattice xyplot
I am trying to use the function histogram to plot the density of some data.
A sample format of data is as follows:
library(lattice)
index<-c(1,1,1,2,2,2,2)
freq<-c(3,4,6,3,6,2,2)
...
4
votes
3answers
68 views
Strip an ordered sequence of characters from a string
I've realized recently that the strip builtin of Python (and it's children rstrip and lstrip) does not treat the string that is given to it as argument as an ordered sequence of chars, but instead as ...
4
votes
2answers
2k views
C# - Context Menu Strip has scroll behaviour when user hits arrow keys
I have a context menu strip with 8 items and two separators. When the user brings up the context menu strip, then hits the arrow key to scroll through the items, hitting the eighth item causes the ...
4
votes
1answer
466 views
Xcode Archive debug strip errors
I am trying to integrate a large legacy C++ library with an iOS app. We are able to build and run on device but we are not able to archive the app. Archiving fails with the following error.
Command ...
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 ...
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. ...
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> ...
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 ...
3
votes
4answers
980 views
How do I strip all javascript out of an HTML document using PHP?
In my email program I use Tidy to clean up the HTML before I send out the emails. A problem is beginning to persist that if I send a mail fetching the html from a url on the web there may exist some ...
3
votes
6answers
5k views
How do I strip local symbols from linux kernel module without breaking it?
If I do --strip-debug or --strip-unneeded, I have the .ko that lists all function names with nm, if I do just strip foo.ko I have a kernel module that refuses to load.
Does anyone know a quick ...
3
votes
6answers
2k views
strip all classes from p tags
I was just wondering if any one knew a function to remove ALL classes from a string in php.. Basically I only want
<p>
tags rather than
<p class="...">
If that makes sense :)
3
votes
1answer
1k views
PagerTabStrip and PagerTitleStrip
When should we use pagerTabStrip and when should we go for pagerTitleStrip???
What does the word interactive indicator and non-interactive indicator mean actually? Can you please explain me the ...
3
votes
4answers
3k views
Linux: stripping executables
I'd like to strip as much as I can an executable - on Linux: an ELF. I only want in there the stuff I need to run it.
I tried using strip:
strip -s elf
but it doesn't seem to do a good job: nm ...
