2
votes
1answer
31 views
Data clean-up; what layer?
I have an app built on Model-Glue: Unity that contains some search forms. I need to trim leading and trailing spaces from search strings before using them to query the database. I' …
0
votes
1answer
6 views
Trim file extension UITableView
I want to trim the file extension from text I have NSMutableArray'd in table cells.
NSMutableArray *theFiles;
NSFileManager *manager = [NSFileManager defaultManager];
NSArra …
7
votes
12answers
2k views
Is there a Perl-compatible regular expression to trim whitespace from both sides of a string?
Is there a way to do this in one line?
$x =~ s/^\s+//;
$x =~ s/\s+$//;
In other words, remove all leading and trailing whitespace from a string.
0
votes
1answer
456 views
trimming a string in a JSTL expression
I have the following line in a JSP page:
<c:if test="${postAuditBean.postAudit.authority == authority.value}">
I would like change this comparison to first trim leading an …
0
votes
1answer
46 views
How do you configure JBoss to trim additonal whitespaces generated by JSPs?
Getting lots of additional whitespace in the html output, looks like its because of the JSP tags =/
I saw this referenced somewhere:
<init-param>
<param-name>trimSp …
0
votes
5answers
50 views
Trimming string variables by reference in PHP5
I saw another post suggesting using this statement to trim string variables contained in the array:
$_POST=array_map('trim', $_POST);
However, if in the first place, the strings …
0
votes
4answers
305 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.
0
votes
4answers
79 views
Left Trim in Javascript
Hey guys,
there are lots of scripts out there to trim a string in javascript, but none how to Left Trim String.
This is what I use to trim:
String.prototype.trim = function() …
0
votes
3answers
164 views
Trim the ‘ (apostrophe) character in an sql statement
I'm using the DBMS_SQL package that returns the value '12345' as a value for a column name.
How do you trim the apostrophes out from the value so that it could be converted into a …
1
vote
2answers
157 views
How to remove new line characters from data rows in mysql?
I can loop through all of the rows in a php script and do
UPDATE mytable SET title = "'.trim($row['title']).'" where id = "'.$row['id'].'";
and trim can remove \n
But I was jus …
0
votes
1answer
171 views
left trim white space xslt 1.0
I am creating a left trim template and I have this below template:
<xsl:template name="str:left-trim">
<xsl:param name="string" select="''"/>
<xsl:variable …
0
votes
5answers
113 views
assign “it” in each iteration (groovy)
Hey, i try to trim each string item of an list in groovy
list.each() { it = it.trim(); }
But this only works within the closure, in the list the strings are still " foo", "bar " …
3
votes
3answers
200 views
String from byte array doesn’t get trimmed in C#?
Hello :)
I have a byte array similar to this (16 bytes):
71 77 65 72 74 79 00 00 00 00 00 00 00 00 00 00
I use this to convert it to a string and trim the ending spaces:
ASCII …
4
votes
2answers
144 views
Trim trailing spaces in XCode
Is there a way to force XCode to trim trailing whitespaces when I save file?
I'm using version 3.1.3 if that matters.
1
vote
2answers
84 views
SQL - Why is parameter trimmed
I have a table (t) with a column (c) defined as varchar 20, containing the values 'a', 'b' and 'c'
If I execute the following sql, a value is returned:
select * from table where …
