Questions tagged [stripping]

72 questions
0
votes
0 answers

Remove debugger symbols from xCode 4.6

I have an IOS app (ObjC and C++) I've just noticed that the output binary file contains debuger symbols - there are no variable names nor method names, but I can see class names. All stripping settings are enabled, GenerateDebugSymbols is set to…
EdGar
  • 11
  • 2
0
votes
3 answers

Getting one tag from string?

I have this kind of string $string='Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type
Miomir Dancevic
  • 6,726
  • 15
  • 74
  • 142
0
votes
2 answers

How can I strip the first 14 characters in an list element using python?

I have a txt file, from which I need to search a specific line, which is working, but in that line I need to strip the first 14 characters, and the part of the list element I am interested is dynamically generated during run time. So, scenario is I…
Urmi
  • 33
  • 4
0
votes
4 answers

Grab within from Curl

I curl and get the following: echo $contents which gives me this: Balance: $ 1.02 $13.32 fee $15.22 fee 2 How do I just grab the 1.02 - everything after the $ and in front of the I want to strip this via php and…
thevoipman
  • 1,773
  • 2
  • 17
  • 44
0
votes
1 answer

stripping when selecting

I have two tables, ones lists students_playing but it's about 10 characters long, first and last name combined.... I want to select from the avail_students but I don't want to select the students that has the same name that matches the first 5…
thevoipman
  • 1,773
  • 2
  • 17
  • 44
0
votes
1 answer

Converting one string element in an array into multiple elements in the same array

I have the following array: info = ["Thursday, July 19, 2012", " \n 4:00 PM to 6:00 PM (CT) \n happy hour with company\n company100 W. Main St.Suite 5Chicago, IL 60602"] I'm trying to convert info[1]…
Scrappy
  • 3
  • 1
-1
votes
2 answers

Javascript passed string with \r in the string is being interpreted to newline

I am receiving a new string like so "ABCD\richard" I want to be able to strip off "ABCD\" off of the string. However JavaScript is interpreting the "\r" as a new line metacharacters. I imagine I will have the same issues with any metacharacters. I…
Qtpounder
  • 23
  • 1
  • 4
-1
votes
2 answers

How to remove text in between \r's including \r from a text file?? And if any text contains \r in between ' ' that also should be removed

'Aadhirai' 'A special star' '6' 'Boy' '' "\rgoogletag.cmd.push(function() { googletag.display('div-gpt-ad-1445572280350-0'); });\r" 'Aadhiren' 'Dark' '6' 'Boy' '' 'Aadhish' 'King Commanded Counselled' '5' 'Boy' '' 'Aadhyatm' 'Dhyan' '1' 'Boy' ''…
-1
votes
2 answers

Perl AJAX stripping html characters out of string?

I have a Perl program that is reading html tags from a text file. (im pretty sure this is working because when i run the perl program on the command line it prints out the HTML like it should be.) I then pass that "html" to the web page as the…
APalmer
  • 919
  • 3
  • 11
  • 22
-1
votes
3 answers

PHP strip the content to fix number of lines

What is the best way in PHP to strip the content to fix number of lines? When we strip the content by character length then sometimes its 5 lines and sometimes its 6 lines. This is due to the different width of individual character and size of word.…
Lalit Arora
  • 301
  • 1
  • 3
  • 9
-3
votes
3 answers

How to strip letters off a string with numbers, so that it can be changed to int and sorted

I am making a dice rolling game where the scores and players have to be stored in an array, and then printed out in order as a scoreboard. I can do all of this but sorting the scoreboard. I have worked out that I need to strip the letters from the…
Ben Solomons
  • 31
  • 1
  • 4
-4
votes
3 answers

PHP Stripping leading zeros 0 from a number

I am posting this as this isn't something most newbies may be familiar with. The Problem We have a ticketing system which makes use of a numeric id. Now some people in the company prefer to pre-pend zeroes to the ticket number and some people would…
Rudi Strydom
  • 4,417
  • 5
  • 21
  • 30
1 2 3 4
5