The strip tag has no wiki summary.
-1
votes
3answers
34 views
'int' object has no attribute 'strip' error message
This is my program and what means this error?
def menuAdiciona():
nome = input("Digite o nome de quem fez o cafe: ")
nota = int(input("Que nota recebeu: "))
if len(nome.strip()) == 0:
...
19
votes
7answers
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
// ...
0
votes
2answers
44 views
Regexp to strip away wrapping DIV-tag
In certain cases the response from the server is wrapped in a DIV-tag like this:
<div id="marker-aab44ba9d64a41398ed97a251dfb938e-629">42</div>
The content of the tag might be whatever: ...
25
votes
9answers
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 ...
4
votes
3answers
79 views
Remove whitespaces and newlines from JSON file
I have a JSON file that has the following structure:
{
"name":[
{
"someKey": "\n\n some Value "
},
{
"someKey": "another value "
}
...
0
votes
0answers
7 views
XCode code stripping doesn't strip all symbols
When I build my project in XCode (for debug or archiving) and specify Strip Debug Symbols:
Strip Linked Product YES
Strip Style ALL SYMBOLS
Additional Strip Flags -S -x
I still have ...
1
vote
2answers
35 views
Strip function in qdap package in R - Removes slash incorrectly
I have a text file, which is several hundred rows long. I am trying to remove all of the [edit:add] punctuation characters from it except the "/" characters. I am currently using the strip function in ...
1
vote
8answers
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
4answers
55 views
using awk to extract and split
i am trying to extract a substring with awk from a command answer in bash
example output line: abc_def_ghi jkl_lmn_opq
getting the second part is easy by
echo abc_def_ghi jkl_lmn_opq | awk ...
5
votes
3answers
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 ...
0
votes
3answers
376 views
Whitelist javascript to strip html tags
I have modified a whitelist javascript regex that strip unwanted tags.
I am trying to allow this code:
<span style="color: #000000"></span>
but I am unable to do it in regex.
Bellow ...
4
votes
2answers
502 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 ...
15
votes
5answers
11k 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():
>>> ...
0
votes
1answer
402 views
Dynamic telerik TabStrip
I'm working on a dynamic Telerik Tab Strip.
Each tab have a Grid and I need to pass a parameter to the action for filter my model but that parameter is allways null.
View:
@{ ...
0
votes
1answer
18 views
Reduce wxWidgets size Mac and disable PNG
I edited the port file to create wxWidgets statically because I wanted to reduce the executable size. At first I used dynamic linking and dylibbundler, but that resulted in ~40 MB size for the Bundle. ...
1
vote
4answers
49 views
Remove extra characters in the string in Python
I have couple of strings (each string is a set of words) which has special characters in them. I know using strip() function, we can remove all occurrences of only one specific character from any ...
0
votes
1answer
41 views
shc on Mac showing 'Killed: 9' error
I'm using shc on Mac OS, to generate stripped binary of bash scripts, for distribution. The issue is, when i execute the stripped binary (with .x ext) it shows the error killed: 9.
Even when i make ...
0
votes
1answer
61 views
Devise when login strip whitespaces around password
I'd like to let devise strip leading and trailing whitespaces around the users password.
So I changed in devise.rb
config.strip_whitespace_keys = [ :email ]
to
config.strip_whitespace_keys = [ ...
0
votes
0answers
20 views
recovering stripped executable binary
I have a few questions regarding binary symbol stripping.
if linux ELF file is compiled with "dynamically linked" option with glibc
and stripped, can I somehow recover the glibc symbols without ...
1
vote
1answer
37 views
Rstrip based on regex in Javascript
I'm trying to validate a list of email addresses client-side. These addresses are separated by a comma or a semi-colon. They typically look like this:
'fake@mail.com; another@mail.com; '
...
1
vote
1answer
40 views
how to strip alt character code with php
I'm using this code to strip unwanted characters from a string, but I have a big problem with ALT+0160 character which is a non break space. I need to remove it as well
$name = str_replace ("'", ...
0
votes
3answers
217 views
Remove question mark from Paperclip-generated files in Ruby on Rails 3.2.6
I'm using Paperclip-FFMEG to upload video files to my development environment (and, eventually, to a local server when my project goes into production).
When videos are uploaded, the filename is, by ...
1
vote
0answers
31 views
Stripping symbols in release build on Mac fails
When trying to create a release build of my plugin bundle, the linker fails to succeed because it cannot strip the symbols.
Here is the output:
...
0
votes
0answers
57 views
How to remove program name from jpeg meta without changing dpi value?
Is there any way of removing the Program Name under Origin in Details tab from Properties without changing the dpi value?
Everything i tried until now changes the dpi from 300 (the value i've saved ...
0
votes
1answer
36 views
How to Strip Carriage returns from a String
I'm trying to process a string so that it contains no carriage returns however I'm having some trouble. I am currently using:
Visual Studio 2010:
strText = strText.Replace(vbCr, "")
The carriage ...
2
votes
3answers
79 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.
1
vote
1answer
28 views
Removing all symbols from EXE file with Visual Studio
I'm linking an executable file with several static libraries (projects in my solution), and want to remove all internal function names from the final .exe file.
Which settings do I have to use for ...
0
votes
1answer
39 views
how to strip characters interfering with beautiful soup returning links with specified text?
i am trying to do two things with beautiful soup:
find and print divs with a certain class
find and print links that contain certain text
the first part is working.
the second part is returning ...
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'> ...
2
votes
4answers
96 views
How to strip characters from the right side of every word in Python?
Say, if I have a text like
text='a!a b! c!!!'
I want an outcome like this:
text='a!a b c'
So, if the end of each words is '!', I want to get rid of it. If there are multiple '!' in the end of a ...
0
votes
4answers
49 views
TCL Strip expression (Varying chars)
If i have a string such as:
foo_image_v001.ext
that could just as easily say
bar_image_v001.ext
How can i use TCL to strip the first underscore and everything to the right of it, leaving me with ...
1
vote
4answers
1k views
Strip whitespace and newlines from XML in Java
Using Java, I would like to take a document in the following format:
<tag1>
<tag2>
<![CDATA[ Some data ]]>
</tag2>
</tag1>
and convert it to:
...
2
votes
1answer
69 views
How to undo strip - i.e. add symbols back to stripped binary
I have a stripped binary and symbol-file. Is it possible to add the symbols back to binary and create an unstripped binary.
My use-case is using this binary w/ valgrind.
Thanks.
1
vote
0answers
94 views
Can't set to true Enabled property in strip menu item variable on new form
First of all, I'm a complete beginner in Visual Express C# 2010 and in C# so please expect loads of mistakes in the code snippets I'm having trouble with :]
I have an app with several forms. The main ...
2
votes
6answers
3k views
how to strip punctuation in php
How can I strip punctuation except for these characters . = $ ' - € %
4
votes
3answers
69 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 ...
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> ...
1
vote
0answers
97 views
getting http.client.BadStatusLine with urlopen(IP).read()
The data I am trying to read is in xml format. There is a single space before the xml declaration. I can not edit this part as it is hard coded into the data source. I can only read from it. When the ...
2
votes
2answers
100 views
Does a Python strip() on a split() string do anything?
Based on some experiments, it appears to me that the following Python v2.7 code:
def lookup_pattern(pattern, file_containing_patterns):
for line in file_containing_patterns:
splits = ...
0
votes
3answers
129 views
How to strip double spaces and leave new lines? Python
How to strip double spaces and leave new lines? Is it possible without re?
If I have something like that:
string = ' foo\nbar spam'
And I need to get:
'foo\nbar spam'
' ...
13
votes
4answers
5k 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 ...
1
vote
1answer
916 views
Drupal removes tags from body of page
How do I stop Drupal from removing tags from the body of a page??
If I create a page that is organized such as
<p>blah blah</p>
<p>blah blah 2</p>
When I go back ...
-2
votes
1answer
110 views
How to strip out special characters of a list in python?
I'm currently doing a project for class and I need a little advice/help. I have a csv file that I'm extracting data from. (I am not using the csv module because I'm not familiar with and the ...
0
votes
2answers
365 views
ValueError: invalid literal for long() with base 10: ''
How do I get this to work?
n = 1234
f = open("file", "r")
while True:
x=f.readline()
print "*********************"
print n%(long(x))
if n%(long(x))==0:
print x
else:
print "..."
I'm a noob ...
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 ...
0
votes
4answers
49 views
How to do str.strip() for every line in a text file? Unix
I could do the following in python to clean and strip unwanted whitespaces, but can it be done just through the terminal by other means like sed , grep or something?
outfile = ...
2
votes
5answers
91 views
Removing spaces from tuple
I have this list:
[('', '', '654', 'Tom', '- Jerry', '', '', ''),
('', '', '', '', '', '756', 'X-Man -', 'Batman'),
('453', 'Hulk - Superman', '', '', '', '', '', '')]
How do I remove the ...
1
vote
0answers
98 views
Wordpress html tags strip on manual excerpt
I have tried to make links, br and italics tags works on manual excerpt but no luck, no the excerpt breaks. I have tried many differents codes like the proposed in ...
2
votes
2answers
411 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. ...
0
votes
2answers
84 views
jQuery: copy contents, strip <p> tags, and create linebreaks
I've succesfully created a behavior that copies the contents of a div container into a textarea field:
$('a').click(function() {
var contents = $('.content').html();
...



