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

1
vote
3answers
56 views

How can I trim a text like this with jquery?

I have a bunch of title texts that get generated they all have different .Length but at a specific startindex of the string I want to find the closest space and then remove the text after it and also ...
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. ...
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 ...
-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 / ...
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
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 ...
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 ...
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
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
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 ...
0
votes
1answer
160 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 ...
0
votes
3answers
80 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 ...
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 ...
4
votes
2answers
113 views

Hide empty <li>

I want to hide all the <li> if they are empty or if there any blank space in <li>. I am doing it like this: $("li:empty").filter(function(i,v){return $.trim($(v).text()).length == ...
-2
votes
3answers
73 views

Identifying if the user presses <enter>

I have been working on this for several days and I'm super frustrated. This is my first course in Java so please bear with me on lack of knowledge still. I'm supposed to write a program that contains ...
0
votes
1answer
64 views

How to use trim() text LPWSTR type in WIN32 API

I have: LPWSTR str=" Nguyen Phong Sac " How to trim str. It means: str="Nguyen Phong Sac"
1
vote
2answers
61 views

jQuery - elegant way to trim() all elements in a doc?

More joy cleaning up auto-generated html. Plenty of extraneous spaces injected into tags: <span>Lorem Ipsum&nbsp;&nbsp;&nbsp;</span> dolor sit... (&nbsp; represents actual ...
0
votes
1answer
36 views

Quick way to .Trim in presence of many .Children: is there such a command?

I do not fully understand the structure of Trim(), when applied to data scraping for websites. I scrape data called Elements from a website, identifying the corresponding node (it is a div class= ...
4
votes
2answers
426 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
75 views

what does “malloc_trim(0)” really mean?

The manual page told me so much and through it I know lots of the background knowledge of memory management of "glibc". But I still get confused. does "malloc_trim(0)"(note zero as the parameter) ...
-2
votes
3answers
74 views

Excel: Is there a formula for this big space in between another? [closed]

I have content which looks like this below in the excel. i need to trim away all the unnecessary info. Only keep the -.pdf. The remaining will be removed. i have tried several formula but only able to ...
0
votes
2answers
65 views

Removing trailing whitespace with awk

I'm trying to get and print some system information off my Mac using the system_profiler command. I'm able to get the information just fine but for each item there's a leading space and trailing ...
1
vote
3answers
83 views

Why is Xcode adding whitespace to end of String?

I'm a noob to iphone development and I am having a very weird issue with xcode. For some reason, it is randomly adding trailing whitespace to the end of my strings. My initial string value is parsed ...
0
votes
0answers
56 views

Trim leading and trailing spaces in OpenCSV

I am using OpenCSV's CSVReader to read some comma separated values from a file. I'm not sure how to trim leading and trailing spaces. Sure, I could do String.trim() but it would be cleaner not to. In ...
0
votes
1answer
47 views

PHP - Hidden whitespaces after decrypt

I have read about 50 pages or more, for more than 3 hours and i didn't find any solution... For example, i have encrypted emails in my system and i have a code to give me the email list to send an ...
0
votes
4answers
101 views

How to avoid rounding off in NSNumberFormatter

I am trying to have a number string with maximum 2 decimals precision, while rest decimals just trimmed off instead of rounding them up. For example: I have: 123456.9964 I want: 123456.99 -> Just ...
0
votes
0answers
32 views

Trimming the last value from StringBuffer

I need to trim the last , from my StringBuffer any ideas? My output is like this hi,hi,hi,hi,hi, Now i need to remove the last comma from my output..Please help me Thanks in advance
0
votes
1answer
72 views

Removing trailing Spaces from Long Datatype PL/SQL

I have a Long with a couple of sentences in it, at the end there is a huge amount of blank spaces that need removed. The problem is that the I have wrote a function to convert this long to a Varchar2 ...
1
vote
2answers
96 views

Jquery trim not working Japanese whitespaces

I just found that the jquery trim function (using 1.8.x) will not trim Japanese whitespaces. Any better solution to this issue?
0
votes
5answers
147 views

Trim string with trim.End

I want to trim a String with more than 1 character. The String: <incident_response> <msg_id>50889_360</msg_id> <inquiry_id>INC000000087930</inquiry_id> ...

1 2 3 4 5 12