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
6answers
102 views

Cannot trim from the end of string

When the following is executed: foreach (String fromList in columns) { query += "`" + fromList + "`,"; } query.TrimEnd(','); The comma is not trimmed from the string. What am I doing wrong?
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 = ...
0
votes
0answers
26 views

How to trim/ truncate text in MySQL [duplicate]

Possible Duplicate: MySQL truncate text with ellipsis I am trying to truncate with an ellipses if the text returned is too long because I need it to show up on a very small amount of space ...
2
votes
2answers
176 views

How to trim leading and trailing NaN values from n-dimensional array?

This is easy in two dimensions, for example: >> A = NaN*ones(5,4) >> A(2:4,2:3) = [1 2; 3 4; 5 6] >> A(2,2) = NaN >> A(4,3) = NaN A = NaN NaN NaN ...
0
votes
2answers
83 views

touble trimming a string in c

I am using this question as a guide to trimming a string in C. It works properly on a string bounded exclusively by whitespaces (' '), but on special whitespaces ('\r', '\n', '\t', etc.), it fails. ...
0
votes
2answers
695 views

What do I get an error with highcharts, only in IE8

The charts are working ok in most browsers, including firefox and Opera. However in IE I am getting: Object doesn't support this property or method report_graph.js Code: 0 URI: ...
2
votes
2answers
51 views

cygwin help trimming output

ping google.com -n 10 | grep Minimum | sed s/^\ \ \ \ // will output: Minimum = 29ms, Maximum = 49ms, Average = 32ms I want to trim from the space after the = to the the , in Minimum So then it ...
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. ...
0
votes
3answers
2k views

PHP - Trim doesn't work with white space?

Today, i have very weird problem with trim function. Here is my code. =and result is 124. Trim function didn't work with this string ??! $s = '                                                         ...
1
vote
3answers
114 views

Shorten plain div text

I am using a service called 'embedly' which is showing my feeds. I'm trying to shorten the text of this feed, so I tried: $('.description').html( function(){ return ...
0
votes
1answer
565 views

C# String Trim Spaces doesn't work

I have a problem with a String. The string is like this: string something = " whatever and something else "; Now I'm trying to get rid of the spaces at the beginning and at the end like this: ...
0
votes
0answers
274 views

Android trim/split/cut video using SDK/NDK

I have heard of FFMPEG but i am not able to understand how to integrate it in my android code and use the methods of ffmpeg to trim the video. Does anyone knows about video trimming library in ...
0
votes
1answer
253 views

Php Contact Form - Optional Fields (trim)

I have a php contact form I'm trying to edit to suit my needs. Currently, every field needs to be filled out in order for the form to work. What do I need to edit in order to make some fields ...
0
votes
3answers
151 views

Is there a better way to trim whitespace and other characters from a string?

For example, if I want to remove whitespace and trailing commas from a string, I can do this: String x = "abc,\n"; x.Trim().Trim(new char[] { ',' }); which outputs abc correctly. I could easily ...
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
3answers
381 views

How can I trim a text array in PostgreSQL?

Is it possible to trim a text array in PostgreSQL? If so, how? I want to get something like: select trim(myTextArrayColumn) from myTable; where myTextArrayColumn is of type text[]. Example ...
0
votes
2answers
465 views

Trim a string using a string from a variable in batch

I have a batch the would display usage if your parameter is invalid. For ex. Running "sample.bat update fuh" :usageactions set actions=%* set toremove=update set ...
1
vote
2answers
922 views

trim non-ascii characters from string returned by nodejs crypto

I have successfully decrypted a sensitive data using nodejs crypto library. The problem is that the decrypted data has a trailing non-ascii characters. How do I trim that? My current trim function ...
2
votes
2answers
134 views

is memmove necessary for trim function in C?

I was reading a wikipedia article on Trimming and saw this implementation of ltrim (left trim) char * ltrim(char *str) { char *ptr; int len; for (ptr = str; *ptr && ...
0
votes
1answer
241 views

Wordpress permalink without domain name

OK it might sound stange but I am facing a good challenge with wordpress. when echoing the_permalink(); and checking the portfolio pages, I am getting a link something like this: ...
5
votes
6answers
375 views

Trim characters from a string

I need to trim a substring from a string, if that substring exists. Specifically, if the string is "MainGUI.exe", then I need it to become "MainGUI", by trimming ".exe" from the string. I tried ...
6
votes
3answers
2k views

trim() function doesn't work in IE8?

Whenever I use trim() function, it works fine with Chrome and FireFox but I get an error in IE8 saying : Object doesn't support this property or method Can anyone tell me why this happens and if ...
1
vote
4answers
256 views

Stop users from registering spaces in their usernames

I've encounted an error, my registeration form allows users to register usernames with spaces ie, "user name" when it should be just "username" with no spaces. I've tried searching and reading many ...
2
votes
2answers
1k views

Javascript Split Space Delimited String and Trim Extra Commas and Spaces

I need to split a keyword string and turn it into a comma delimited string. However, I need to get rid of extra spaces and any commas that the user has already input. var keywordString = "ford ...
0
votes
1answer
208 views

wp_trim_words not working on anything but ordinary strings

I´m a bit out of my field here and I´m confused about this. Using wp_trim_field doesn't work for me except for regular strings. This does not work, it returns the whole text: <?php $field = ...
1
vote
2answers
1k views

Android sdk cut/trim video file

Is there any way to cut a video (mp4 or 3gp) on android, like use only the last 5 seconds of the movie... on iphone this is possible using the AVAssetExportSession but on android I haven't found ...
0
votes
2answers
104 views

trimming a string in c++

Hello I have a problem with trimming string in c++. It adds some weird chars at the end of the string. string& Napis::subst(char cold, char cnew) { string * s = new string(data); ...
1
vote
2answers
528 views

SQL Full Trim Function - Access/VBA code I can do it, but I don't know SQL Functions

I need to combine fields and then trim out extra spaces the middle of a text field. With Access it's easy for me but creating a SQL Funtion eludes me. This is how I do it in Access, anyone able to ...
0
votes
0answers
16 views

Trim recent answers

i have a widget in wordpress. it is recent answers. i would like to trim it to 20 characters. otherwise it is too long to read at sidebar. how can i trim this recent answers widget? here is the code ...
1
vote
1answer
285 views

Is there an Oracle Trim equivalent that works on VARCHAR fields made up exclusively of whitespace?

SELECT 1 FROM dual where trim('X ') = 'X' Gives 1. SELECT 1 FROM dual where trim(' ') = '' Gives no rows. Is there an easy way to select all rows where field is whitespace short of regex? Is ...
1
vote
1answer
106 views

About boost trim function efficiency in multi-thread environment

I use boost trim function and find it perform very well in single-thread environment. But when I call trim function in multi-thread environment, it will have a poor performance. I also find that it ...
0
votes
1answer
408 views

SQLite Extract Month From Column

I have a column of data with this date format mm/dd/yyyy. I would like to covert to this to the format yyyy-mm-dd for (SQLite usage). How could I achieve this? UPDATE Table_Name SET Column_Name = ...
1
vote
3answers
2k views

Equivalent of VBA TRIM function Excel with worksheet function

I know that the TRIM function as worksheet function and as VBA function returns different results: the worksheet function removes all spaces from a text string except for single spaces between words ...
0
votes
1answer
219 views

Is it safe to use (strip_tags, stripslashes, trim) to clear variable that holds URLs

It's quite pleasure to be posting my first question in here :-) I'm running a URL Shortening / Redirecting service, PHP written. I aim to store and handle valid URLs data as much as possible within ...
0
votes
3answers
399 views

how to rtrim wchar_t using specific unicode codepoint?

For example I have defined such string: const wchar_t mystring[] = L"зеленыйййййййййййййййййййййййй" And I need to change it to: зелены What options I have ? Is there anything like: ...
2
votes
2answers
985 views

php truncate string if longer than limit and put some omission at the end..similar to ruby

I need this functionality in my recent php code many times, So I am lookin for a function to do the work, if there exists any.. If the string if bigger than the limit truncate it and put some ...
0
votes
2answers
735 views

Trim spaces from values in MySQL table

I want to update all the values in a table by trimming all the leading and trailing spaces. I have tried the following queries but neither worked. I know that it is possible to use TRIM with SELECT, ...
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
220 views

how to remove leading and trailing slash in mysql

I need to query remove / from url fields in the table menu original table menuname url home /home/ about /home/about/ requirement menuname url home home about home/about
-3
votes
4answers
297 views

Remove whitespaces inside a string in javascript [closed]

I've read this question about javascript trim But I can not make it work. Even a hello world! <html> <head> <script type="text/javascript"> function myFunction() ...
1
vote
2answers
42 views

Need to trim string based on value

var a = 123456789 var b = 6 based on 'b' I need to trim 'a'. example if 'a' having 8 digits I need to trim 'a' upto 6 digits(123456). if b is 8 I need to trim upto 8 digits. Please help me
0
votes
3answers
548 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 ...
0
votes
2answers
282 views

using jquery trim in IE

I recently had trouble with the tablesorter.js where I couldnt sort by date because whitespace was breaking my script (tablesorter, wont sort by date correctly) I finally figured this out and changed ...
1
vote
3answers
658 views

How to trim or split variable name in VBA word

I have a variable like this: var = "word1 (should be replaced by word1)" I need to get word1 by itself and sometimes it may be a word(s) but it will always have (*) after it. Any way to delete ...
0
votes
2answers
230 views

How to trim the spaces in url with parameters in jsp?

In my application, When hyperlink clicked by the end user, The javascript function will get executed. and it generates request. But with parameters, the url is generating with space between ...
0
votes
9answers
2k views

Best way to trim value in textbox before save/insert using formview into datasource

By triming i mean something like. First name "John " -> trim to "John" Last name "Lennon " -> trim to "Lennon" I have those Textbox in FormView, binding with property using ...
1
vote
2answers
663 views

How to remove trailing white spaces and “&nbsp;” from the start and end of a string in PHP?

If $text = ' &nbsp; &nbsp; MEANINGFUL THINGS GO HERE &nbsp;&nbsp; &nbsp;'; How can I get $cleanText = 'MEANINGFUL THINGS GO HERE'; I know the following will ...
1
vote
3answers
344 views

Remove file prefix in absolute path but prefix is also directory part

I was wondering if there is any nice solution for the following problem: Assuming I have a string with the absolute Path to a file and the file has the prefix "temp_". I am able to trim the prefix ...
-1
votes
2answers
172 views

is there a function same as rtrim() and ltrim() of php in cakephp?

Well, here's what I have to do. I need to trim the whitespaces in the trailing and leading of strings in cakephp strings. I though it would be easy since in php, it is as simple as using the rtrim() ...
0
votes
2answers
90 views

Delete all characters in even-number position

If I have this string: k6s6k6s6c1u6t661w651z6k6z6z6k611 How can delete all the characters in even-numbers position? (2, 4, 6...) kskscut6w5zkzzk1 I tried: $str = ...

1 2 3 4 5 12