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

0
votes
3answers
545 views

Trimming with array of string

i want to create a simple program that i have a array of strings and for each string i want to check if it contains specified character, i want to remove it.first of all i replace the specified ...
4
votes
4answers
2k 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() ...
0
votes
1answer
21 views

How to delete the last space at the end of each line in a text file? (shell scripts)

I have a file like this: z E l f A l t E^ t d Y s m u s t z E l f s x @ w e s t s t e t s h E p w i t E n o G @ o G @ n m I s x i n s t O n t and I need to remove a space at the end of each line. ...
2
votes
2answers
3k views

How do I change my code to avoid warning “should trim empty <div>”

I use 'class' when I need CSS function. For example, when I want to use clear: left; I make a class .clear {clear: left;} and use it in HTML file. But there is always the warning should trim ...
2
votes
4answers
3k views

Remove first and last char from string

I have this: $dataList = "*one*two*three*"; $list = explode("*", $dataList); echo"<pre>";print_r($list);echo"</pre>"; which outputs: > Array ( > [0] => > [1] => ...
-1
votes
0answers
48 views

Trimming line function from a string

I am running a bunch of commands using a client called SecureCRT. The text being outputted is being written to a file that i then later process. When selecting the data, there appears to be leading / ...
0
votes
1answer
40 views

Google Apps Script - trim string using .replace method does not work for me

I am using Google Apps Script to create apps. I encounter issue when I try to trim my spreadsheet value. I have referred alot of posts & comments in stackoverflow and other forum too. They are all ...
4
votes
1answer
42 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
4answers
734 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 ...
6
votes
2answers
592 views

Is there a “bounding box” function (slice with non-zero values) for a ndarray in NumPy?

I am dealing with arrays created via numpy.array(), and I need to draw points on a canvas simulating an image. Since there is a lot of zero values around the central part of the array which contains ...
0
votes
3answers
26 views

PHP - How can I trim a string to four characters?

I am displaying a string which varies in length but I only ever want it to display the first four characters. Not sure what I need to add to this: <?php if ...
-1
votes
1answer
39 views

missing array $_POST when used $_POST = array_map('trim', $_POST);

i have check box named check_user_id[] like: <input type="checkbox" value="87" name="check_user_id[]" class="waiting_user"> <input type="checkbox" value="88" name="check_user_id[]" ...
0
votes
1answer
29 views

php ltrim many characters at once

Hi is there a better and faster way to clean many characters from beginning of a string? I have this one, but is this really the fastest way? $description_new = ltrim($description_new, '###'); ...
1
vote
1answer
40 views

Batch to keep only certain characters in a string

I have a variable coming from a for loop in a batch file : for /f Tokens^=3^,10delims^=^<^>^" %%i in ('findstr -i "href=" bookmarks.html') do ( set str1=%%j How to keep only certain ...
7
votes
16answers
47k views

String.trim(); How does it work?

If I've got string like that: " content ". Will String.trim() remove all spaces on these sides or just one space on each?
18
votes
7answers
22k 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 ...
48
votes
19answers
55k 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 ...
0
votes
1answer
51 views

Trim spaces from a field when selecting

I'm trying to remove spaces from a field (before and after the name) SELECT TRIM(name) AS new_name FROM users; But it doesn't do anything, and as I have looked at MySQL dev pages, the query looks ...
0
votes
2answers
31 views

Strange trim function behavior

I wonder why I've got empty string as a result when I'm especting something completely else... I use trim function to cut phone number from string: select trim(leading '509960405' from ...
0
votes
1answer
34 views

Trim function for exceptions

As you know with second parameter of trim (same as ltrim, rtrim) you can add exact symbols to by trimmed. For example I have string: $myStr = '(!@STRING$)'; If I use trim for symbols ()!$ I'll ...
0
votes
1answer
17 views

Raw XML includes indent (blank characters), which messes with my select

I have XSL: <html xsl:version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml"> <body> <table> <tr> ...
-4
votes
2answers
55 views

Trimming string from punctuation chars in c++ [closed]

Is there any easy way to get rid of the most left and most right punctuation chars from the string? Example: "(abcd"!)" Result: abcd Of course I can use for loop from the left and right side of ...
67
votes
7answers
59k views

Removing whitespace from string in JavaScript

Does anyone know how to remove whitespaces in JavaScript? I have strings with extra whitespaces, each time there's more than only one whitespace I'd like it be only one. Anyone? I tried searching ...
5
votes
2answers
1k views

How to configure JAXB so it trims whitespaces by default

I would like to configure JAXB so that it trims whitespaces on all string fields I saw the following answer : How to configure JAXB so it trims whitespaces when unmarshalling tag value? But I do not ...
0
votes
1answer
14 views

Can I format Extj groupHeader

This is my groupFeature this.myGroupingFeature = Ext.create('Ext.grid.feature.Grouping', { groupHeaderTpl: '{name}' }); What I want is trim the first character. Is there a way to do ...
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); ...
0
votes
2answers
35 views

How do I trim DB field spaces querying DB with Entity Framework?

In DB i have a field PhoneNumber = '123 456 789' Query returns null: return context.Clients.FirstOrDefault(c => с.PhoneNumber.Trim() == "123456789") Is it possible to trim white spaces using ...
-1
votes
1answer
36 views

How can I remove extra comma from the beginning ,end and additional one from the string [closed]

what I have is: display[] = '{ "_format_": "{string} [([{data1}, ][{data2}, ][{data3}, ][{data4}, ][{data5}, ] )]", "_all_" : { "tag": "test"}, }' the display is like: string(, data2, data3, ...
0
votes
1answer
16 views

triming extension from filename in Excel

I have this formula. This works great but fails when there are 5 characters including the dot. For example, abcdefgh.pdf =TRIM(LEFT(A1,LEN(A1)-4)) gives me abcdefgh xyz.xlsx ...
0
votes
1answer
34 views

How to delete line from php file as well as the newline that goes with it?

I want to delete the line from a file that contains the string $snum. I got it to work, but it leaves a newline behind. How can I get rid of it? I tried the trim function below but it doesn't work. ...
1
vote
2answers
68 views

Split string and remove spaces without .select

(Limitations: System; ONLY) I want to be able to split a string into an array and remove the spaces, I have this currently: string[] split = converText.Split(',').Select(p => p.Trim()).ToArray(); ...
0
votes
5answers
50 views

Trim text file to first column with java

Well, i've got this list of IP's. 193.137.150.5 368 ms DANIEL-PC 193.137.150.7 95 ms N/A 193.137.150.13 ...
4
votes
2answers
424 views

What is a good alternative of LTRIM and RTRIM in Java?

What is a good alternative of JavaScript ltrim() and rtrim() functions in Java?
0
votes
1answer
159 views

trim char array C++

How do i trim a char array ? I'm reading this array from the text file and when it matches a certain string , ive to process it. But it never matches. I assume because it contains some trailing and ...
2
votes
1answer
42 views

What is the best way to trim leading and trailing single quotes in pl_sql

I am getting a Varchar2 variable with leading and trailing single quotes but I want to remove these single quotes, I am doing it like trim(BOTH '''' FROM lastname); It is giving me right result ...
4
votes
3answers
88 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
1answer
58 views

Revise Excel “Find” formula to find more than one possible end value

I have a formula that is working well for me. It is taking the body of an email and chopping up into fields. This is the formula for the "cost should be" cell. =MID(TRIM(CLEAN(B463)),FIND("Cost Should ...
0
votes
2answers
21 views

Pull text from webpage and trim

wget --output-document=- http://www.tip.it/runescape/grand-exchange-centre 2>/dev/null \ | grep "The Grand Exchange updated" \ Will output something like: <h4 id="gec_update_time">The ...
-1
votes
1answer
30 views

Removing characters from a string passed from an HTML page [duplicate]

I'm trying to trim a string of some character so I can put it in an SQL query. An example of what is being passed to my method is "\n asdw_value\n". I want the "\n"s and the space to be removed, but I ...
1
vote
9answers
5k views

How do I remove trailing whitespace in a QString in Qt C++?

I want to remove all the trailing whitespace characters in a QString. I am looking to do what the Python function str.rstrip() with a QString. I did some Googling, and found this: ...
9
votes
11answers
21k views

Does the MySQL TRIM function not trim line breaks or carriage returns?

From my experiments, it does not appear to do so. If this is indeed true, what is the best method for removing line breaks? I'm currently experimenting with the parameters that TRIM accepts of the ...
0
votes
3answers
77 views

How to trim off last character in an Array - jQuery

so today I have an Array with several strings in them, all ending with , example: jazz, latin, trance, I need to remove the , off the last element in the Array. Searching Stackoverflow I found ...
-1
votes
2answers
58 views

Which JavaScript trimming function is better?

We have built in method for all strings which can be accessed in this way: " string ".trim(); // outputs: "string" There is also a jQuery version of trim function, which we use in this way: ...
0
votes
2answers
63 views

Problems with LONG NAMES (PHP): how to place 3 DOTS (…) at the end of a fixed SPACE LENGTH

We are having difficulties displaying LONG NAMES on our website and would need help urgently. We actually need to place IMAGE NAMES under IMAGES that have a FIXED WIDTH. Because image names are ...
0
votes
2answers
73 views

Trim overflow text in css? [duplicate]

Is it possible to trim the ending of the text? INPUT this is an extremely very long text RESULT this is an ...
151
votes
13answers
93k 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 ...
3
votes
5answers
874 views

Whitespace in a database field is not removed by trim()

I have some whitespace at the begining of a paragraph in a text field in MySQL. Using trim($var_text_field) in PHP or TRIM(text_field) in MySQL statements does absolutely nothing. What could this ...
0
votes
3answers
54 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
102 views

Can I trim start and end whitespace from PHP's shell_exec() output?

I'm running shell_exec (git log in this example) and my response has a lot of whitespace at the start and end of the string. 7baca58 test 3 847ad88 test 3 bcd7340 Nother test ...
133
votes
5answers
141k 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 " ...

1 2 3 4 5 12