Tagged Questions
0
votes
5answers
51 views
Trim text file to first column with java
Well, i've got this list of IP's.
193.137.150.5 368 ms DANIEL-PC
193.137.150.7 95 ms N/A
193.137.150.13 ...
-3
votes
2answers
295 views
Trim() in Java not working the way I expect? [duplicate]
Possible Duplicate:
Query about the trim() method in Java
I am parsing a site's usernames and other information, and each one has a bunch of spaces after it (but spaces in between the ...
0
votes
2answers
146 views
Substract two strings in javascript
kwd variable holds this value: news path:".aspx"
It is basically the query string of an url.
var path= "path:\".aspx\"";
so kwd= whatever user types passed to the url like this+path:
kwd=news ...
3
votes
6answers
1k views
Trim String in Java while preserve full word
I need to trim a String in java so that:
The quick brown fox jumps over the laz dog.
becomes
The quick brown...
In the example above, I'm trimming to 12 characters. If I just use substring ...
0
votes
2answers
165 views
Trimming Characters From Data in mySQL
I'm working in MySQL Pro (5.5.9).
I'm trying to get the year from a column (Game_ID) in my table Games. Unfortunately, the year is surrounded by three characters and then followed by 5 integers. Ex:
...
4
votes
3answers
6k views
jQuery Plugin “readmore”, trim text without cutting words
I'm using http://rockycode.com/blog/jquery-plugin-readmore/ for trim long text and add a "See more" link to reveal all the text.
I would love to avoid cutting words, how could I do that?
If the ...
0
votes
1answer
167 views
Get specific string values from XML by identifying start with and end with string variables
I am trying to cut out some of the text that an XML file gives out. I have this XML data
<?xml version="1.0" encoding="utf-16"?>
<CurrentWeather>
<Location>Luqa, Malta (LMML) ...
1
vote
2answers
2k views
operations on blob data in informix
How can we use substring, trim, length operations on some text of blob datatype. And how can we update a column of blob datatype using query?
Thanks,
10
votes
3answers
61k views
How to Select a substring in Oracle SQL up to a specific character?
Tried searching Google and Stackoverflow first, but couldn't come up with a simple answer for what I wanted to do. (Maybe my Google-Fu is weak. Who knows?) Anyway...
Say I have a table column that ...
16
votes
3answers
21k views
Fastest way to remove first char in a string
Say we have the following string
string data= "/temp string";
If we want to remove the first character / we can do by alot of ways such as :
data.Remove(0,1);
data.TrimStart('/');
...
1
vote
1answer
3k views
How can you tell MYSQL to TRIM the X number of characters, beginning from the Back?
How do I write the following in MYSQL?
SELECT SUBSTRING(value - (1 TRAILING CHARACTER)) FROM table;
Basically substring(value, 2) trims the first letters. But I need to trim the last letters. I ...
