Tagged Questions
The strip tag has no wiki summary.
22
votes
7answers
21k 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"
18
votes
1answer
355 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 ...
14
votes
8answers
2k 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 ...
14
votes
7answers
9k 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
// ...
13
votes
5answers
2k 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 ...
11
votes
3answers
4k 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?
10
votes
4answers
160 views
Trim values before inserting into DB? — Rails 3.1
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
1answer
372 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!
8
votes
4answers
1k 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 ...
8
votes
5answers
2k 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
5answers
188 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
5answers
2k 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
7
votes
3answers
2k 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'> ...
6
votes
7answers
134 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 ...
6
votes
2answers
902 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
2answers
3k 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.
...
5
votes
4answers
607 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():
>>> ...
4
votes
3answers
1k 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 ...
4
votes
4answers
3k 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 ...
4
votes
4answers
280 views
How to strip leading “./” in unix “find”?
find . -type f -print
prints out
./file1
./file2
./file3
Any way to make it print
file1
file2
file3
?
4
votes
2answers
1k 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
5answers
1k 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 ...
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 ...
3
votes
2answers
129 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
3answers
167 views
How would one strip text before and after a certain html tag
Basically I want to take something like:
textheretextheretexthere
<table>
<tr><td>heres some stuff</td><td>and some morestuff</td></tr>
</table>
...
3
votes
2answers
356 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)
...
3
votes
4answers
298 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 ...
3
votes
3answers
535 views
C# equivalent of BigDecimal.stripTrailingZeros()
In Java you can use BigDecimal.stripTrailingZeros() to remove any extra zeros at the end.
I've read a few questions on here about how to strip trailing zeros from a decimal in C# but none of them ...
3
votes
5answers
105 views
Strip out portion of a url using jquery
Google produces image thumbs like so
http://images.google.com/images?q=tbn:9vPPg9Y5ojFMeM::www.maniacworld.com/amazing-cars.jpg
I only need the main image url which in this case is ...
3
votes
4answers
796 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 ...
3
votes
3answers
217 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 ...
3
votes
2answers
4k 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 ...
3
votes
6answers
909 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
4answers
552 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 ...
2
votes
1answer
69 views
How to strip executable comments of MySQL by regexp
I need to get content of executable comments in mysqldump results, but for regexp
/\/\*\!\d+\s+(.*?)\*\//s
and input data like this:
/*!50003 text
some text else
/*
comment
also comment
*/
text...
...
2
votes
3answers
82 views
more then one expression in list comprehension?
i want to use a list comprehension to split elements of a list.
line = [x.split(", ") for x in lineList]
At same time I'd like to remove tailing and leading characters of the elements ...
2
votes
5answers
114 views
Ruby: How to strip a string and get the removed whitespaces?
Given a string, I would like to strip it, but I want to have the pre and post removed whitespaces. For example:
my_strip(" hello world ") # => [" ", "hello world", " "]
my_strip("hello ...
2
votes
4answers
201 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 ...
2
votes
3answers
140 views
How can I get stripped image name using jQuery?
Let's say I have an img element with src="img/highlow.png".
How can strip down to get alert('highlow');?
2
votes
1answer
253 views
gcc vs. clang: symbol stripping
gcc and AMD Open64 opencc both have a -s option to "strip symbol table and relocation information". So far I haven't been able to find the same option in Clang/LLVM. Does it exist?
2
votes
1answer
82 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 ...
2
votes
5answers
225 views
How to get last name first inital [closed]
Possible Duplicate:
Regex - Return First and Last Name
Hi,
I have the full name of users stored in one field. How can i get the full first name and last name first initial. This is what ...
2
votes
4answers
156 views
php stripping out part of string
I'm trying to build a simple sql statement:
// build sql statement
$sql = "select * from some_tbl where ";
if(strlen($mydetails['city']) > 0) {
$sql .= "cityname in ...
2
votes
3answers
252 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 ...
2
votes
2answers
281 views
remove all occurence of anchor tags from a string without removing thier child node
I have an html string and I need help transforming this:
<table >
<tr>
<td><a href="/link.html" onclick="javascript:aFunction()">some text</a></td>
...
2
votes
2answers
542 views
how to remove spurious non ascii characters, but keep spaces and newlines?
I have some text files that contain some non ASCII characters, I want to remove them, however keep the formatting characters.
I tried
$description = preg_replace('/[\x00-\x1F\x80-\xFF]/', '', ...
2
votes
2answers
2k views
HTML Agility Pack strip tags NOT IN whitelist
I'm trying to create a function which removes html tags and attributes which are not in a white list.
I have the following HTML:
<b>first text </b>
<b>second text here
...
2
votes
4answers
1k 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
1answer
193 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 ...
2
votes
2answers
157 views
Strip Down A String at Colon
I have a textarea where a user copies and pastes the entire message:
Time(UTC): 2010-02-27T21:58:20.74Z
Filesize : 9549920 bytes
IP Address: 192.168.1.100
IP Port: 59807
Using PHP, how can I ...