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
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 ...
0
votes
1answer
556 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: ...
11
votes
4answers
929 views

How to remove whitespace from Model attributes?

What's the simplest way to make sure models trim leading and trailing white space from string values. One inconvenient way seems to be a before_save filter -- although for something as common as ...
46
votes
4answers
17k views

Objective C - Trim spaces from end of a string

i need to remove spaces from the end of a string. How can i do that? Example : if string is "Hello " it must become "Hello" Thanks
0
votes
4answers
476 views

Adding whitespace in Java

I would like to ask about Whitespace in Java, is there a way we can define how many white space we want instead of creating a character " " ? Because there is the class trim() to remove white ...
0
votes
0answers
513 views

VS2010 - Shortcut to right trim (even line breaks) until next char

I am looking for a shortcut to get the next examples to run in Visual Studio 2010. In the examples I would press the shortcut on the '>|<' sign. I write the before/after line(s). /*Before*/ ...
1
vote
4answers
2k views

T-SQL syntax issue with “LTRIM(RTRIM())” not working correctly

What is wrong with this statement that it is still giving me spaces after the field. This makes me think that the syntax combining the WHEN statements is off. My boss wants them combined in one ...
0
votes
4answers
8k views

Trim leading spaces including tabs

I need to read files using vbscript and remove all leading spaces including any tabs. I now LTRIM will remove the leading spaces but how do I remove tabs also. Thanks.