Tagged Questions

Trimming refers to the manipulation of a text string to remove leading and/or trailing whitespace (and/or ASCII control characters).

learn more… | top users | synonyms

88
votes
11answers
28k views

.trim() in JavaScript not working in IE

I tried to apply .trim() to a string in one of my JavaScript programs. It's working fine under Mozilla, but an error displays when I try it in IE8. Does anyone know what is going on here? Is there ...
62
votes
2answers
37k views

How to trim whitespace (including tabs)?

I've come to the conclusion that python has a function for just about everything I could ask for. It's just a matter of actually finding these functions. Is there a function that will trim not only ...
61
votes
4answers
57k views

Trimming a string in Python

I need to write a function in python that gets a string- If the first or last characters in the string are spaces, then they should be removed (both). If not than nothing should be done. " Hello " ...
52
votes
12answers
30k views

What's the best way to trim std::string

I'm currently using the following code to right-trim all the std::strings in my programs: std::string s; s.erase(s.find_last_not_of(" \n\r\t")+1); It works fine, but I wonder if there are some ...
25
votes
17answers
25k views

How do I trim leading/trailing whitespace in a standard way?

Is there a clean, preferably standard method of trimming leading and trailing whitespace from a string in C? I'd roll my own, but I would think this is a common problem with an equally common ...
22
votes
5answers
5k views

IE8 and JQuery's trim()

I am making use of trim() like so: if($('#group_field').val().trim()!=''){ Where group_field is an input element of type text. This works in Firefox but when I try it on IE8 it gives me this error: ...
20
votes
6answers
34k views

Javascript chop/slice/trim off last character in string

I have a string 12345.00 would like it to return 12345.0 I have looked at trim but looks only to trim whitespace and slice which I don't see how this would work. Any suggs?
14
votes
4answers
3k views

Trim trailing spaces in XCode

Is there a way to force XCode to trim trailing whitespaces when I save file? I'm using version 3.1.3 if that matters.
11
votes
2answers
1k views

Algorithms to trim leading zeroes from a SQL field?

I just came across the interesting problem of trying to trim the leading zeroes from a non-numeric field in SQL. (Since it can contain characters, it can't just be converted to a number and then ...
10
votes
4answers
162 views

Trim values before inserting into DB? — Rails 3.1

What's the simplest way to make sure models trim leading and trailing white space from string values. One inconvenient way seems to be a before_save filter -- although for something as common as ...
10
votes
4answers
1k 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 ...
10
votes
3answers
7k views

jQuery text truncation (read more style)

My question is very similar to "http://stackoverflow.com/questions/2104653/trim-text-to-340-chars" but in jQuery. It sounded very straight forward but when I searched around I couldn't find any ...
9
votes
7answers
4k views

trim is not part of the standard c/c++ library?

Is it me or are there no standard trim functions in the c or c++ library? is there any single function that acts as a trim? If not can anyone tell me Why trim is not part of the standard library? (i ...
8
votes
3answers
75 views

Is there a particular reason why jQuery's addClass() is not right-trimming?

<div id="myDiv" class=" blueberry mango "></div> If we use the .addClass() $("#myDiv").addClass("carrot"); The class for myDiv is now "(no-space)blueberry mango(double-space)carrot" ...
8
votes
12answers
4k 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.
7
votes
4answers
5k views

JavaScript: Parsing a string Boolean value?

JavaScript has parseInt() and parseFloat(), but there's no parseBool or parseBoolean method in the global scope, as far as I'm aware. I need a method that takes strings with values like "true" or ...
7
votes
10answers
8k views

Trim characters in Java

How can I trim characters in Java? e.g. String j = “\joe\jill\”.Trim(new char[] {“\”}); j should be "joe\jill" String j = “jack\joe\jill\”.Trim("jack"); j should be "\joe\jill\" ...
6
votes
4answers
517 views

In Haskell, how do you trim whitespace from the beginning and end of a string?

How do you trim whitespace from the start and end of a string? trim " abc " => "abc" Edit: Ok, let me be a little clearer. I did not understand that string literals were treated so ...
6
votes
2answers
2k views

Objective C - Trim spaces from end of a string

i need to remove spaces from the end of a string. How can i do that? Example : if string is "Hello " it must become "Hello" Thanks
6
votes
5answers
1k views

Perform Trim() while using Split()

today I was wondering if there is a better solution perform the following code sample. string keyword = " abc, foo , bar"; string match = "foo"; string[] split= keyword.Split(new char[] { ',', ...
5
votes
5answers
629 views

Trim unicode whitespace in PHP 5.2

How can I trim a string(6) " page", where the first whitespace is a 0xc2a0 non-breaking space? I've tried trim() and preg_match('/^\s*(.*)\s*$/u', $key, $m);. Another question: How can I reliably ...
5
votes
4answers
294 views

Why does Environment.CommandLine.Trim('"') not remove the trailing quote?

The following C# code: using System; namespace TrimTest { class Program { static void Main(string[] args) { Console.WriteLine(Environment.CommandLine); ...
5
votes
4answers
1k views

String from byte array doesn't get trimmed in C#?

I have a byte array similar to this (16 bytes): 71 77 65 72 74 79 00 00 00 00 00 00 00 00 00 00 I use this to convert it to a string and trim the ending spaces: ...
5
votes
11answers
8k views

Best algorithm to strip leading and trailing spaces in C

What is the best approach in stripping leading and trailing spaces in C?
4
votes
6answers
142 views

Trim String in Java while preserve full word

I need to trim a String in java so that: The quick brown fox jumps over the laz dog. becomes The quick brown... In the example above, I'm trimming to 12 characters. If I just use substring ...
4
votes
3answers
1k 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 ...
4
votes
2answers
2k views

Sending ATA commands directly to device in Windows?

i'm trying to send ATA commands to a physical disk in Windows, and get the response from the device. Note: In this case i want to send the IDENTIFY DEVICE (0xEC) command. The device will respond ...
4
votes
2answers
117 views

Where to Trim() incoming request parameters?

I have the following block of code public ActionResult Tabs(SearchViewModel svm) { if (Request.IsAjaxRequest()) { svm.Summary = _entitySearchService.GetSearchDataSummary(svm.Search); ...
4
votes
3answers
177 views

Iterate through Object's own Strings & Trim each

I have multiple large objects which each have about 60 strings. I have to trim all those strings, and I'd like to do so without having to go this.mystring = this.mystring.Trim(). Instead, I'm looking ...
4
votes
7answers
590 views

Writing String.trim() in C [closed]

Possible Duplicates: Painless way to trim leading/trailing whitespace in C? Trim a string in C Hi guys, I was writing the String trim method in c and this is the code I came up with. I ...
4
votes
7answers
817 views

How can I trim a List<string> so preceding and succeeding blank lines are removed?

What is the easiest way to do this? The results should be: 1: one 2: two 3: 4: 5: five Code: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ...
4
votes
3answers
1k views

Remove trailing empty space in a field content

I am using SQL server MSDE 2000. I have a field called notes of type nvarchar(65). The content is 'Something ' with an extra space after the content (quotes for clarity) in all the records. I used ...
4
votes
5answers
2k views

assign “it” in each iteration (groovy)

Hey, i try to trim each string item of an list in groovy list.each() { it = it.trim(); } But this only works within the closure, in the list the strings are still " foo", "bar " and " groovy ". ...
4
votes
3answers
8k views

Removing starting spaces in Python?

I have a text string that starts with a number of spaces, varying between 2 & 4. What's the easiest & simplest way to remove them ie. remove everything before a certain character? Cheers!
3
votes
4answers
68 views

PHP check if user typed something in text input

I have a few simple html text inputs. I would like to check that the user inputted something and not just spaces. My code below isn't working. HTML (in a form): <input type='text' name='email' ...
3
votes
4answers
92 views

javascript need to do a right trim

In javascript, how to I do a right trim? I have the following: var s1 = "this is a test~"; var s = s1.rtrim('~') but was not successful
3
votes
2answers
120 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
114 views

Trim (remove frames from) a video using Python

I would like to trim - cut off frames at the beginning and end - a video that can be in a variety of different formats, and then save the trimmed video. Are there any libraries or suggestions on how ...
3
votes
5answers
186 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 ...
3
votes
2answers
85 views

How can I trim all strings in an Array?

If I have this array: array(" hey ", "bla ", " test"); and I want to trim all of them, How can I do that? The array after the trim: array("hey", "bla", "test");
3
votes
1answer
107 views

How to remove whitespace in a sentence using remove command in C++?

I get a file as input and I read the first line like this (quotes mark the begin and end, but are not in the file): " 1, 2.0, 3.0, 4.0 " When I use the ...
3
votes
3answers
154 views

C# Problem trimming line breaks within strings

I have a string that is populated from an Xceed datagrid, as such: study = row.Cells["STUDY_NAME"].Value.ToString().TrimEnd (Environment.NewLine.ToCharArray()); However, when I pass the study ...
3
votes
1answer
121 views

Trimming 0x00 in received DatagramPacket

In my Java app I receive DatagramPacket(s) through DatagramSocket. I know the maximum number of bytes which packet could contain, but actually every packet length varies (not exceeding max length). ...
3
votes
2answers
809 views

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

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 ...
3
votes
4answers
825 views

TRIM RTRIM LTRIM Perfomance

I am only required to do RTRIM() in some part of query but if i do TRIM() will that affect performance. Is Trim() Slower/Faster/Exaclty same(NOT even has negligable difference) compared to RTRIM() ...
3
votes
2answers
948 views

Remove all objects after index 20 in NSMutableDictionary?

I have an NSMutableDictionary that possibly contains more than twenty objects. If it contains more than 20 objects, how should I remove the oldest entries until there is only 20 left? For example, ...
3
votes
6answers
2k views

Trim leading/trailing whitespace from textarea using jQuery?

following code is an example of text placed into a textarea from a database. <textarea id="inputPane" cols="80" rows="40" class="pane"> <p> some text here... </p> <p> ...
3
votes
2answers
155 views

PHP: Trim every element in an object and if empty, set to N/A

I have an object: stdClass Object ( [Color] => Red [Shape] => Round [Taste] => Sweet ) I want to trim each of the elements in the object and if that element is empty, set it to ...
3
votes
2answers
183 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 ...
3
votes
3answers
319 views

How to sort in SQL, ignoring articles ('the“, ”a', “an” etc)

This comes up a lot, and I can see it's come up on StackOverflow for XSLT, Ruby and Drupal but I don't see it specifically for SQL. So the question is, how do you sort titles correctly when they ...

1 2 3 4 5 7