The tag has no wiki summary.

learn more… | top users | synonyms

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) ...
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 ...
1
vote
3answers
346 views

strip space between one letter words

How would you strip spaces between one letter words. Example: string: "T I G R U S FOO and Drezga d . o . o . New York" we want: "TIGRUS FOO and Drezga d.o.o. New York" If possible preg_replace ...
-2
votes
5answers
212 views

Python's string.strip() weird behavior

I got a string looking like that: EVENTS: RAID Volume Set Information Volume Set Name : ARC-1120-VOL#00 Raid Set Name : Raid Set # 00 Volume Capacity : 1.0GB SCSI Ch/Id/Lun : 00/00/00 Raid ...
1
vote
4answers
1k views

Python - Ignore FIRST character (tab) every line when reading

This is a continuation of my former questions (check them if you are curious). I can already see the light at the end of the tunnel, but I've got a last problem. For some reason, every line starts ...
2
votes
5answers
1k views

How to get last name first inital [duplicate]

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 ...
1
vote
3answers
323 views

Stripping out text characters from variables, leaving numbers and comma?

I need to be able to strip from characters from a few variables leaving only the numbers and the £ sign (unless of course mysql can add that in itself?) and also any . separators. so if the variable ...
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 ...
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 ...
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 ...
0
votes
4answers
2k views

How to check a string for emptyness or length zero

I recently asked a question about converting list of values from txt file to dictionary list. You can see it from the link here: See my question here P883, Michael Smith, 1991 L672, Jane Collins, ...
0
votes
4answers
4k views

Removing tab delimited spaces from a text file using for loop

For my python class, I am working on opening a .tsv file and taking 15 rows of data, broken down in 4 columns, and turning it into lists for each line. To do this, I must remove the tabs in between ...
0
votes
0answers
1k views

convert html to flat text in iOS [duplicate]

Possible Duplicate: HTML character decoding in Objective-C / Cocoa Touch I have some html text in a feed and I want to parse this to show in a tableviewcell. I handle the tags but there is ...
0
votes
2answers
345 views

How to get regex to grab all letters from an objective c string?

I'm trying to get the following regular expression to grab only the letters from an alpha-numeric character input box, however it's always returning the full string, and not any of the A-Z letters. ...
1
vote
5answers
231 views

Remove part of filename with jQuery

I want to strip a filename like this: IMG_6903.JPG&width=504 to: IMG_6903.JPG ... My script looks like this: $(function(){ $('#exposure img').each(function(){ var $imgSrc = ...
1
vote
5answers
110 views

extracting different parts of a string in php

I have a website that all its stories' title are like this : new job alert from chicago {latest reservation : 3/5/2011} new job alert from NY {latest reservation : 3/4/2011} new job alert from LA ...
2
votes
1answer
656 views

Any Java counterpart for `/usr/bin/strip`?

Is there any tool that can remove debug info from Java .class files, just like /usr/bin/strip can from C/C++ object files on Linux? EDIT: I liked both Thilo's and Peter Mmm's answers: Peter's was ...
2
votes
6answers
3k views

how to strip punctuation in php

How can I strip punctuation except for these characters . = $ ' - € %
2
votes
2answers
945 views

Is there a way to delete all embed, object, script tags in php?

Is it possible to delete all embed, object, script tags in php?
1
vote
2answers
1k views

PHP MySql display returned content without html tags being stripped

I have a column in SQL 'Text' datatype and inside I have content within html tag, eg somecontent: onetwo... I want the mysql query to echo out the databases contents without stripping the html tags ...
0
votes
2answers
467 views

With jQuery, how do I keep only the first sentence of some HTML, and keep the formatting?

Let's say I have some HTML like so: <div id="text">This <i>is</i> a <b>test</b>. Do <i>not</i> be <b>alarmed</b>.</div> I'd like to use ...
4
votes
4answers
818 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 ...
0
votes
4answers
253 views

How do I strip custom tags from text in a submitted html form using PHP/Perl?

I have a news submission form. I want it to be secure from XSS and the like by stripping all html tags. Then I will convert all other tags with this format [tagname attributes][/closetagname] To ...
3
votes
3answers
839 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 ...
1
vote
2answers
570 views

Strip image src from given html

The html contains images path like <img src="/testsite/images/abc.jpg" /> I want javascript to convert all images src to be like <img src="images/abc.jpg"/> Simply saying I want to ...
3
votes
5answers
270 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 ...
0
votes
1answer
284 views

How to change internals path in blender 2.5

I'm writing a python script for blender that has to change the internals path from a windows format (using "\") for a linux format ("/") and change the unit letter for a specific path. My reasons is ...
0
votes
1answer
216 views

What are the disadvantages of discarding symbols?

the program strip on GNU/Linux (man) allows you to discard symbols from object files or executables. By doing this you gain a smaller file size. So my question is what are the trade-offs of ...
0
votes
1answer
131 views

Is there an API for stripping audio(mp3) out of a video file (avi/divx/xvid/mpeg)?

Is there an API for stripping audio(mp3) out of a video file (avi/divx/xvid/mpeg)? Please help
0
votes
1answer
660 views

Smarty strip tags not working

Is there a particular reason why {strip} tags in smarty don't work? I have two templates. In one of them, it works. In the other it doesn't. But I put them in the exact same place {strip} ...
0
votes
4answers
2k views

Remove all text within specific tags

I am interesting in removing all the text within the following tags: <p class="wp-caption-text">Remove this text</p> Can anybody give me an idea of how this can be done in php? Thank ...
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 ...
2
votes
4answers
227 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 ...
0
votes
2answers
572 views

Quick Ruby Batch renamer

I am trying to tie in a few different scripts I have noticed here and here link text Trying to get a basic script that will allow me to strip characters or rename files given a directory characters ...
1
vote
3answers
927 views

How to extract image filename from style/background-image tag?

I found lots of posts regarding estracting a filename from an img-tag, but none from a CSS inline style tag. Here's the source string <span style="width: 40px; height: 30px; background-image: ...
0
votes
1answer
270 views

sql server strip string

I have a table in SQL Server of strings that i need to inner join to another table that contains some similarity between substrings, here i have an example: Intel Atom CPU N450 @ 1.66GHz (INNER JOIN) ...
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 ...
0
votes
1answer
85 views

Stripping “&Itemid=XX” out of my URLS using .htaccess

I need to strip out a certain part of my URLS being generated and want to use .htaccess. Some links are being appended with "&Itemid=XX" after the .html. Example: ...
1
vote
3answers
550 views

Removing everything from string outside specified tags (PHP)

Question has been updated to exclude regex as a possible solution. I'm trying to build a php function which will allow me strip everything outside of specified tags while preserving the specified ...
3
votes
4answers
965 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 ...
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
3answers
375 views

Problem with Rails stripping quotes from input form

I'm writing a search form for my Rails (2.3.9 but I've checked that this problem exists also on 3.0.3) application. The problem is that Rails is stripping quotation marks from the users input. I ...
0
votes
1answer
924 views

Can't strip all unneeded symbols on a Mac OS X c++ application?

I'm trying to strip my mac os x application of all unneeded symbols. If I do this on my linux app using "--strip-unneeded" the symbol table on my application is empty and returns nothing. On Mac OS ...
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 ...
0
votes
1answer
515 views

Getting rid of \&quot in js file

When i post something with " to a php page, it gets escaped with \&quot ; . To get rid of this in the php file, i've tried str_ireplace, htmlspecialchars_decode and stripslashes, nothing is ...
0
votes
5answers
407 views

Removing content from start and end of string (PHP)

I'm trying to get a users ID from a string such as: http://www.abcxyz.com/123456789/ To appear as 123456789 essentially stripping the info up to the first / and also removing the end /. I did have a ...
1
vote
0answers
395 views

ruby: overriding strings' methods returning nil (strip!, upcase!, downcase!, capitalize!, chop!, chomp!, delete!, gsub!) [closed]

Those stupid 'string'.method! returning nil instead of self in ruby - can be easily overriden: class String ['strip!', 'upcase!', 'downcase!', 'capitalize!', 'chop!', 'chomp!', 'delete!', ...
0
votes
1answer
171 views

Does Zend have something like {strip} in Smarty?

Smarty has a {strip} function: {strip} <table border='0'> <tr> <td> Hello world </td> </tr> </table> {/strip} Which outputs: <table ...
0
votes
3answers
2k views

How to use a REGEX pattern to remove a specific word “THE” only if at beginning of text string?

I have a text input field for titles of various things and to help minimize false negatives on search results(internal search is not the best), I need to have a REGEX pattern which looks at the first ...
1
vote
1answer
382 views

How to strip html tags out of xml generated by builder in rails

Here is my situation. I'm trying to create a valid rss feed for an itunes podcast from an existing project. It's a rails application that allows uploading of mp3 radio shows to for listening on the ...

1 3 4 5 6 7