The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
15 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
42 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
24 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
0answers
16 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
22 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
33 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 ("'", ...
1
vote
0answers
25 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
29 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
22 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
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
1answer
31 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 ...
2
votes
4answers
89 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
48 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 ...
2
votes
1answer
56 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
73 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 ...
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 ...
1
vote
1answer
21 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
0answers
65 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
87 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
99 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' ' ...
-2
votes
1answer
95 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
224 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 ...
0
votes
4answers
44 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
86 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
84 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 ...
0
votes
1answer
56 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
2answers
76 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(); ...
0
votes
0answers
66 views

Removing few symbols from .o file in a static library

I encountered the duplicate symbol issue while compiling my ios project that has two static libraries which has conflicting symbols. I used nm command to list out the symbols in both the libraries ...
0
votes
2answers
52 views

php remove characters from beginning to a selected character

I want to know is there is anything available in PHP to remove 437800__ From 437800__611. Original: 437800__611 What i want to end up with: 611 Basically need to start from the beginning of the ...
0
votes
4answers
82 views

Searching a file with the contents of another file python

I have a file that has a unique ID number on each line. I am trying to search a different file for the occurrences of these ID numbers and return the line where these id numbers are in the second ...
1
vote
1answer
140 views

Need Stripe API for iOS for passing credit card detail

I have to pass user's credit card number its expiry date and its secret number in stripe api. Have any one has demo of stripe api for iOS?
0
votes
1answer
591 views

Kendo Grid Ajax inside Kendo TabStrip Ajax (LoadContentForm) not displaying content

I want to put an Ajax Kendo Grid inside an Ajax Kendo TabStrip, but the grid never displays any of its values. (Even if the FireBug console indicates that the values have been correctly get...) Is ...
0
votes
1answer
156 views

kendoTabStrip - how to hide and show individual tabs dynamically

I am using the kendoTabStrip on my page and need to show and hide a specific tab based on actions on the page. How is this done? My code below: Data Grid Data Chart @* ...
2
votes
2answers
332 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
0answers
35 views

How to remove file path strings from static lib generated with Visual Studio?

I use visual studio 2010 to create a static library in release mode. The generated .lib file contains the paths of the source files, alog with the names of some static constants. How can I remove all ...
0
votes
1answer
93 views

App update with support of iPhone 5 and white strip issue

I have an existing app I had to update, and I decided to support iPhone 5 on it. To do that, I made a new splashscreen and checked all my xibs to fit the new size. As the update is released, I wanted ...
1
vote
4answers
133 views

php echo file url and remove dash and .php from the results

I have a php script that will echo a list of files from a folder and display them randomly on my page. At the moment it displays the url of the file for example: what-can-cause-tooth-decay.php ...
0
votes
1answer
74 views

Send only HTML to a crawler/robot without css, js etc? Can it cause a negative ranking google?

Today some crawler passed my site and tries to access several css, js, images and other files. This was also a smart one, interprets also the javascript and want to execute an url that is assembled ...
0
votes
6answers
43 views

PHP - How can I find pull out only the integers in a string that separates the integers with two periods?

Say I have a string like this: $string = '.30..5..12..184..6..18..201..1.' How would I pull out each of the integers, stripping the periods, and store them into an array?
1
vote
2answers
80 views

search line of text for EACH item returned by split in c#

I'm trying to read my apache log and do some processing with it. I use a string split function which contains log lines which refer to me in so way. I want to remove those lines. The code below ...
-1
votes
2answers
40 views

Javascript function to strip user ID from URL

i need a javascript function to strip the user ID from a given URL. for example. i have this URL http://www.example.com/member.php?id=100001877097904 how can i retrieve the ID of the user from that ...
0
votes
1answer
61 views

Replace without Boost

I have to strip some XML tags from the text and leave their values. Example text text <tag>tag_value</tag> text text <a href="example.com">example.com</a> -> text text ...
2
votes
1answer
121 views

Error on Python strip( ) function

In my script below def main(): file= open("NCSIDS_ObsExp.txt", "r") for line in file: line= line.split(',') print line file.close() main() I get: ['Ashe', ...
0
votes
2answers
187 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 ...
0
votes
5answers
62 views

Javascript strip decimal from numeric

I'm using Math.random to generate a random string passed in an ajax call. The problem is that the string generated contains a decimal, and the server interprets this as a file.ext (which of course ...
2
votes
1answer
399 views

Remove Characters from URL with htaccess

Hopefully someone can see what I'm doing wrong, but here's the story... My current site URL's are auto-generated by the ecommerce software from the product and category names, therefore if the ...
2
votes
1answer
324 views

CodeIgniter , Filter, Trim, Stripslashes, Strip_tags and sanatize and replace bad chars in 1 function?

I just started using codeigniter, and i would like to perform input formatting using 1 function. Code i would like implemeneted on my input: function sanitize ($string) { $string = ...
-1
votes
2answers
46 views

How to trim white space in MySQLdb using python

I have a web form taking user data and putting it into a mysql database. I need to trim leading and trailing blanks/spaces. I currently am utilizing the strip() method, but it only trims them for the ...
1
vote
1answer
83 views

how to trim n characters of string in python?

I'm new to python. I would like to trim a string only if it's last 6 digits are zeros. I checked the strip() methods, but I don't see one that indicates the n number of characters to trim from right. ...
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 ...

1 2 3 4 5 7