1
vote
1answer
145 views

How to reduce all whitespace in a string to single spaces?

Using VB6 without any additional references such as Regex, how can I convert a string so that all whitespace in a string is reduced to single spaces? eg. " A B C D E" would be converted to ...
0
votes
1answer
78 views

White spaces in database's field

I have field called Name in my database. Its type is nvarchar(20). When I add data to database and fill this field with some "Foo data" it turns out that value from this database's field is not equal ...
0
votes
4answers
972 views

jquery trim whitespace issue

I'm creating my own jquery plugin to format phone numbers. Here are a few spans with some demo data. <span class="formatMe">&nbsp;</span><br /> <span ...
0
votes
2answers
902 views

How do I write a Hibernate Criteria to match case-insensitively and trim whitespace?

I currently have a restriction on a criteria of MyClass to match values of MyClass.propertyName: Restrictions.ilike("propertyName", matchString) Is it possible for this to match values of ...
1
vote
5answers
196 views

Trim Whitespace in a string

PHP: I want to trim() the whitespace off the beginning of a string using php, but the default settings in trim() aren't handling the the whitespace characters. The white space is 7 spaces long. Is ...
13
votes
5answers
3k 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
4answers
6k 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 ...