Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
6
votes
4answers
217 views

How to trim ending blanks of a string?

In java, I can do it with commons-lang: StringUtils.stripEnd(" abc \t", null) // => " abc" I want to know if there is any built-in method to do this in scala, or how to do it in scala without ...
6
votes
5answers
584 views

How to extend C# built-in types, like String?

Greetings everyone... I need to Trim a String. But I want to remove all the repeated blank spaces within the String itself, not only at the end or at the start of it. I could do it with a method like: ...
6
votes
3answers
161 views

Performance of a trimming function

My old Trimming function: string TailTrimString (const string & sSource, const char *chars) { size_t End = sSource.find_last_not_of(chars); if (End == string::npos) { // only "*chars" ...
6
votes
4answers
960 views

Automatically trimming a mp3 in PHP

Are there any ways to automatically trim an MP3 uploaded to a website to 30 seconds (or some other length) in PHP? If not, is there any good 3rd party services that could be integrated (transparently ...
5
votes
6answers
136 views

Should I trim spaces in a password field

Just wondering. We usually trim a user name in various forms in our ASP.Net application, whats the best practices for password fields. i.e. should we remove a trailing space in a password field ...
4
votes
3answers
258 views

How to trim request parameters automatically in playframework

Play will assign the parameters from request to action parameters, like: public static void createArticle(String title, String content) { } But it won't trim them, so we usually to such code in the ...
3
votes
1answer
223 views

how to add CharacterEllipsis at the begining of the textblock in wpf?

I have a TextBlock with TextTrimming = TextTrimming.CharacterEllipsis and I want the dots to appear at the beginging. Is there a property for this? For example if I have the text "123456789ABCDEF" it ...
3
votes
3answers
452 views

CSS - Multiple images in one and using CSS to determine a background

If you don't know what I mean, check this image out: Multiple images I want to know how it works, CSS yes, but exactly how does it all work out when using a background using this image and then it ...
3
votes
3answers
2k views

JSF trimming white spaces

HI, I have an input field in which I want to trim any leading/trailing whitespaces. We are using JSF and binding the input field to a backing bean in the jsp using: <h:inputText id="inputSN" ...
2
votes
4answers
962 views

Reading a line in c# without trimming the line delimiter character

I've got a string that I want to read line-by-line, but I also need to have the line delimiter character, which StringReader.ReadLine unfortunately trims (unlike in ruby where it is kept). What is the ...
2
votes
4answers
1k views

auto trim whitespace in jsps

is there a good way to trim whitespaces generated by JSPs without resorting to the following techniques: trimSpaces jasper directive: may ruin your layout by eating significant spaces where you want ...
1
vote
4answers
48 views

Trimming off uninitialized list values in prolog

I'm writing something in prolog and the way I used append, it ends up returning a list like [a,b,c|_]. Is there any standard predicate (or simple way) to cut off all the uninitialized/arbitrary ...
1
vote
4answers
310 views

Javascript jQuery strip leading and trailing spaces

I want to trim the value (strip leading and trailing spaces) and make first letter in every word capital. When user leave from the element (blur event) HTML input as follows <input ...
1
vote
2answers
194 views

How to trim audio file in iPhone?

I have sound files in my document directory folder and i want to trim that sound file. How to do that?
1
vote
2answers
249 views

Python string trimming

I have a string in python, which is in this format: [NUMBER][OPERATOR][NUMBER][UNNEEDED JUNK] e.g.: 5+5.[)]1 How could I trim that down to just 5+5? EDIT I forgot to mention, basically, you ...
1
vote
1answer
329 views

Why does c# string.TrimStart trim trailing spaces of the parameter?

In code: string s = "Executing".TrimStart(@"Exec ".ToCharArray()); or string s = "Executing".TrimStart("Exec ".ToCharArray()); s will equal "uting" in spite of the trailing space character while ...
1
vote
2answers
755 views

trim “px” off the end of Jquery var

I have a variable which stores the css value of a margin. I want to remove the "px" from the end so that i just have the number to work with. How can i do this?
1
vote
4answers
176 views

Java equivalent of python's String lstrip()?

I'd like to remove the leading whitespace in a string, but without removing the trailing whitespace - so trim() won't work. In python I use lstrip(), but I'm not sure if there's an equivalent in ...
0
votes
1answer
99 views

characterSetWithCharactersInString not working

Code: NSString *str = @"ABC\rDEF"; str = [str stringByTrimmingCharactersInSet:[NSCharacterSet characterSetWithCharactersInString:@"\r"]]; NSLog(@"%s", [str UTF8String]); Result ABC DEF Can ...
0
votes
1answer
46 views

how do I get rid of single quotes around a doubly quoted string in perl? e.g ' “json_text” '

So I am having a ruby app write json response to the console which is read by another perl program that tries to convert the json response back to a perl hash. Here's my problem: ruby app outputs the ...
0
votes
2answers
55 views

Trim and WhiteSpaceTrimmer

Respected One. I face One problem in javascript .What it is now i am using dojo componets in jsp page.So i changed trim function into WhiteSpaceTrimmer function.but it is working in mozilla firfox ...
0
votes
3answers
220 views

How to insert HTML tags in Joomla! module title?

What I'm trying to do is to add some HTML tags to my Joomla! module titles. I will need something like this Some <b>Title</b> but when I save !Joomla trims the titles and remove all ...
0
votes
2answers
33 views

Drupal trimmer causes nested div's

I work with views. A view manages the display of some text. I checked under REWRITE RESULTS the Trim this field to a maximul length-box and alsoo the Trim only a word-box and Add an eclips...-box. ...
0
votes
1answer
43 views

Trim node inside views

I have a view (Drupal 7), filled with nodes. And I got a trimmer on 200 chars on the body. But as it happens, somethimes a word is cut in half. How do I get to trimm Drupal on words in stead of chars? ...
0
votes
2answers
42 views

how to display the first word in the search table in the iphone app

hii every one in my iphone app i have a search screen & i have some entries in the search bar like sudha, tharanga and womens era (some magazines ) suppose if we search cricket special, it has ...
0
votes
1answer
78 views

problem while trimming the NSstring in objective c in an iphone app

i have a string like "qytwyqteqe" i want only qytwyqteqe but not the symbol "" i tried to trim this string using the following code but its giving error can any one help me pls, thanx in advance ...
0
votes
1answer
36 views

Array is having extra symbols other than which i added, trimming the array in iphone app using objective c

in my iphone app i am adding string values to the array first strSelectedDir value ill be xxx-jan16-2011-10.30AM later its value ill be xxx-feb16-2011-02.30PM ,,i am adding these 2 values into the ...
0
votes
1answer
203 views

CKEditor post Issue in Codeigniter, tags are trimmed

I'm working on a project with CodeIgniter, on my localhost on latest version of wamp server on w7 enterprise x64 SP1 with google chrome 14.0.803.0 dev-m, and added CKeditor 3.6.1 following this guide. ...
0
votes
2answers
194 views

Trimming a NSString without extending it

I want to trim a string to 50 characters (if it's too long), so I decided to use the following method. someString = [someString stringByPaddingToLength: 50 withString: @"" startingAtIndex: 0]; Can ...
0
votes
2answers
312 views

Trim string from left and from right

How can I trim 5 characters from a string from left and right side. e.g. 4k2l3k4jc9l3kancie9 What should be trimmed and kept are: 4k2l3 k4jc9l3ka ncie9 ^ ^ ^ remove ...
0
votes
1answer
266 views

iPhone trim audio recording

I have a voice memo component in my app, and I want to allow the user to trim the audio, similar to QuickTime X on Mac OS Ten point Six handles it, or like the Voice Memos app on the iPhone. Here's an ...
0
votes
1answer
298 views

SharePoint 2010: Trimming page content based on group

In SharePoint 2010, what are the best practices for trimming content on a single page based on group? For example, I have two types of customers that each belong to a different group. I only want ...
0
votes
2answers
746 views

Incorrect decrement of the reference count of an object that is not owned at this point by the caller

Incorrect decrement of the reference count of an object that is not owned at this point by the caller on iPhone. It is happening with NSString which I clearly init and release within the for loop. I ...
0
votes
1answer
55 views

Trimming Course Schedule data using regular expression

I need your help on using regular expression to extract time information from the following kind of data: TTh 7-8:30AM lec AIT PANEL D WF 1-2:30PM lec BA 104 ...
0
votes
1answer
235 views

video trimming in uiimagepicker

I was able trim the video when i used the photo library source type. But when I use the camera source type trimmed video appears to be saved. but when i play the saved video it is not trimmed. Can any ...
0
votes
3answers
259 views

How do I trim a log file with vb.net?

I'm writing a simple application in vb.net and need to output some information to a log file for diagnostic purposes. In order to ensure that the log file doesn't get too big, I need to trim it to a ...
0
votes
0answers
130 views

Parsing html frame

what a good-way for parsing html page, by using QWebKit (lang cpp). I need to view frame, trimmed <div id="chat_wrapper"> *any_html_data* </div>?
0
votes
3answers
137 views

Trimming in SQL Management Studio 2008

I'm trying to trim some info from a table. The column has a number and then a word (e.g. 5 Apples). I just need the number so that I can sum the total of apples. I can't use count because I need to ...
0
votes
1answer
433 views

How to remove trailing symbol for a constant in Rails initializer?

How does one remove trailing character correctly in the following sentence if it's in config/environment.rb file. KEY = ENV['KEY'].delete "\r" It produces the following error: undefined method ...