4
votes
1answer
43 views

PHP trim/rtrim/ltrim VS Regular expression

I tend to use rtrim, ltrim and trim to strip off spaces at the end, left or right. I also use them to strip off the characters at the end or the beginning of the string. Is it faster than a regular ...
0
votes
1answer
27 views

Hide/Remove first line from total address block in JSP

I was calling a method as given here - to print the total address block. Address add = AddressManager.getMyAddress(someId); String totalAddr = FlexibleAddress.getAddressAsString(add , par1, par2); ...
4
votes
3answers
94 views

Combine TrimStart and TrimEnd for a String

I have a string with some letters and numbers. here an exemple : OG000134W4.11 I have to trim all the first letters and the first zeros to get this : 134W4.11 I also need to cut the character ...
0
votes
3answers
55 views

Trimming off non numerical stuff and store them in an array using replaceAll()

Supoose I have input a line "MOVE R1, R2", I split the words with respect to white space and store them individually into an array token[] as follows: String[] token = new String[0];// array ...
0
votes
2answers
76 views

Extract all matches from given string

I have string: =?windows-1256?B?IObH4cPM5dLJIA==?= =?windows-1256?B?x+HYyO3JIC4uLg==?= =?windows-1256?B?LiDH4djj5s3Hyg==?= =?windows-1256?B?Rlc6IOTP5skgKA==?= I need to extract all matches ...
2
votes
2answers
83 views

php ltrim breaks regular expression?

I have a bit of a puzzle for you, or maybe not. Check this piece: $query = ' SELECT account.account_no, account.accountname, accountbillads.bill_city, account.website, ...
-3
votes
2answers
296 views

Trim() in Java not working the way I expect? [duplicate]

Possible Duplicate: Query about the trim() method in Java I am parsing a site's usernames and other information, and each one has a bunch of spaces after it (but spaces in between the ...
0
votes
2answers
71 views

Function trim in js with regexp

I want obtain from string piece, except beginning and ending spaces ( function trim() in php) I want make this witch regexp, in php I make this, here my code $str = " a s d "; $mytrim = ...
3
votes
4answers
145 views

Trim integer from a string

There is a Trim function that I can trim a specific character, but I was wondering if it could trim integers. I have a list of strings: 'ABC01' 'ABCD02' 'AB5123' Length and number are irregular. ...
3
votes
3answers
119 views

Remove All Instances of a Series at End of String

Bear with me, this example may be a bit odd... Suppose we have a program that returns a character array definition - so we can copy-paste it into some other C# code. One possible result is the ...
2
votes
2answers
175 views

Mysterious garbage character - IE 8 only

I am building a table, with content pulled from other elements in the page (page scraping). I am using innerText or textContent to pull the text, then a regular expression to trim it: ...
0
votes
2answers
193 views

Trim number function

I need to trim the last portion of the string that contains the number. In addition, I need to trim the part which does not start with the zero This is what I am doing and I did not include the 0 ...
0
votes
4answers
777 views

triming <br> tag in javascript using regular expressions

I have a regex that I wanted to trim the <br> of a variable str1.replace(/^&lt;br&gt;|&lt;br&gt;$/g,''); example i want to trim a string something like this var str1 = ...
1
vote
2answers
228 views

javascript Regex trim up to 'space' AND 'dash' or match

I asked a similar question before and got the correct response. This time though I would rather try and get two variables for the name after the 'By' and the 'Date' separately. The problem with the ...
3
votes
3answers
387 views

javascript regex and trim everything after “dash”

For the html below, I am trying to put a variable to just "oakbarrels" and a variable to just "Dec 25, 2011". I have already been able to get the "Dec 25, 2011" with regex but I cannot figure out how ...
1
vote
1answer
718 views

Regex Pattern containing single spaces but no leading or trailing spaces?

I am trying to define a string that a user can enter into the system using Regex in Java. The string should not contain trailing, leading or double spaces but may contain numerous spaces throughout ...
0
votes
2answers
171 views

Regex to trim leading/trailng commas: ,aa,bb,cc,

I'm trying to capture aa,bb,cc from the following strings: ,aa,bb,cc, aa,bb,cc, ,aa,bb,cc aa,bb,cc My plan was to: Match the start of line anchor, or the anchor followed by a comma Capture until ...
1
vote
5answers
1k views

Regex trim or preg_replace white space including tabs and new lines

How can I use PHP to trim all white space up to "poo" and all white space afterwards? I would like to turn this: <code><div class="b-line"></div> \t \n\n\n \t \n ...
1
vote
2answers
2k views

Jquery - trim inner HTML?

I somehow need to trim() the innerHTML of my content... so I have something like this: <div> <b>test</b> 123 lol </div> I basically want to rid of the white ...
0
votes
3answers
194 views

How to parse a line out of a file that contains a certain string with PHP?

With PHP I want to get the content of the line starting with descr: out of a whois record from RIPE IP adress ranges, so they should all look something like this: % This is RIPE NCC's Routing ...
1
vote
6answers
159 views

rtrim only letters not numbers..

I am trying to write a function that will trim all the letters off the end of a string, up to the first number it hits. Essentially I have children products, item101S, item101xxx, etc. and want to ...
1
vote
3answers
1k views

jquery trim leading zeros from date of format 01/02/2010

How do I trim javascript date object returned as 01/26/2012 into 1/26/2012? it could be applicable for both month or days. So 01/01/2012 should be trimmed as 1/1/2012. Regular expression? jquery trim ...
0
votes
2answers
645 views

ASP trim string in regex

Does anyone know how to trim the $1 value? ' URL Replacement, www.Scirra.com Dim objRegExp : set objRegExp = new RegExp With objRegExp .Pattern = "\[url\](.*)\[\/url]" .IgnoreCase = True ...
1
vote
2answers
480 views

C# removing comments from a string

I'm using WinForms NET 2.0. I am coding a small function to trim comments from some selected text. What it does is split the selected text by separate lines, and then: If the line contains no ...
0
votes
4answers
750 views

How can I use this trim function for my textbox

How can I apply this trim function: var trimmed = str.replace(/^\s+|\s+$/g, '') ; to this code below so that if a textbox contains whitespaces, it will display message "Incorrect"? Also If I use this ...
3
votes
2answers
744 views

JavaScript trim line breaks with regex?

I am using Google Translate to translate the contents of a textarea and fill another textarea with the API response. In my source textarea I am replacing the /n newlines with <br /> line breaks ...
3
votes
1answer
508 views

Trim &nbsp; and <br> tags from String java or javascript

I want to remove starting and trailing br and nbsp tags from a string using java or javascript. Input and desired output are hosted in jsfiddle.net because Stackoverflow is not letting me to post ...
1
vote
3answers
737 views

How do you trim white space on beginning and the end of each new line with PHP or regex

How do you trim white space on beginning and the end of each new line with PHP or regex? For instance, $text = "similique sunt in culpa qui officia deserunt mollitia animi, id est laborum ...
1
vote
2answers
1k views

Trim multiple line breaks and multiple spaces off a string?

How can I trim multiple line breaks? for instance, $text ="similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et ...
3
votes
6answers
1k views

Remove WhiteSpace Chars from String instance

is there another way how to remove WhiteSpace Char(s) from String 1) other as I know myString.trim() Pattern.compile("\\s"); 2) is there another reason(s) search/look for an another/different ...
2
votes
3answers
3k views

Trim input field value to only alphanumeric characters/separate spaces with . with jQuery

So I'm trying to have an input field where I can enter any characters, but then take the inputted value lowercase it, remove any non alphanumeric characters, leaving "." instead of spaces. For ...
1
vote
1answer
3k views

Get URL from background-image Property

i am currently using this to get the url from the background-image property: var url = $(this).find('div').css('background-image'); url = url.substr(4, url.length - 5); This works fine however in ...
0
votes
2answers
129 views

Format text to left

I am creating a format tool that strips content from articles for print. The demo can be seen here. The full source is avaliable here. Right now the tool strips formating and can also keep paragraphs ...
3
votes
2answers
3k views

Remove or trim carriage return at the end of string [duplicate]

Possible Duplicate: Removing carriage return and new-line from the end of a string in c# How do I remove the carriage return at the end of string. I have already google out this but I ...
0
votes
3answers
2k views

Removing blank lines from a textarea's output

I get data from a textarea where a user has to enter a name one on each line. That data later gets split at the carriage return. Sometimes a user may add blank lines intentionally. How can I detect ...
1
vote
6answers
674 views

How can I extract the columns of data with Perl?

I have strings of this kind NAME1 NAME2 DEPTNAME POSITION JONH MILLER ROBERT JIM CS ASST GENERAL MANAGER I want the output to be name1 ...
4
votes
2answers
1k views

trim in javascript ? what this code is doing?

I was looking for a trim function in JavaScript which doesn't exist and some code on Goggling suggests that use: function trimStr(str) { return str.replace(/^\s+|\s+$/g, ''); } I want to know ...
11
votes
4answers
3k views

Why is s/^\s+|\s+$//g; so much slower than two separate substitutions?

The Perl FAQ entry How do I strip blank space from the beginning/end of a string? states that using s/^\s+|\s+$//g; is slower than doing it in two steps: s/^\s+//; s/\s+$//; Why is this combined ...
4
votes
5answers
1k views

The Best Way of Trimming Spaces in a String

How do I trim spaces inside leaving only one space taking consideration of performance? Input: AA BB Output: AA BB Input: A A Output: A A
1
vote
4answers
2k views

Left Trim in Javascript

there are lots of scripts out there to trim a string in javascript, but none how to Left Trim String. This is what I use to trim: String.prototype.trim = function() { return ...
9
votes
12answers
6k views

Is there a Perl-compatible regular expression to trim whitespace from both sides of a string?

Is there a way to do this in one line? $x =~ s/^\s+//; $x =~ s/\s+$//; In other words, remove all leading and trailing whitespace from a string.