Results 1 to 4 of 4
Thread: Time String to Seconds int
- 03-07-2012, 06:02 PM #1
Member
- Join Date
- Mar 2012
- Posts
- 4
- Rep Power
- 0
Time String to Seconds int
My time values are minutes and seconds extracted from strings within a file. What I am having difficulty in doing is the conversion from "3:25" as a string to 205 seconds as an integer. My simple question would be then how is this achieved. So String to int conversion (in seconds). I attempted it already by using a delimiter to remove the ":" thus separating the minutes and seconds in an array but now I am stuck with how to proceed. any ideas would be greatly appreciated. Thanks
// String to split.
String str = "3:25";
String[] tempString;
// delimiter
String delimiter = ":";
// given string will be split.
tempString = str.split(delimiter);
- 03-07-2012, 06:13 PM #2
Moderator
- Join Date
- Jul 2010
- Location
- California
- Posts
- 1,609
- Rep Power
- 5
Re: Time String to Seconds int
Do you not like or appreciate the help you already received?
Cross posted at Time String to int seconds
- 03-07-2012, 06:14 PM #3
Moderator
- Join Date
- Apr 2009
- Posts
- 10,481
- Rep Power
- 16
Re: Time String to Seconds int
So you now have an array of two Strings, each representing integers.
The Integer API has a method or two that might be useful for your next step, which is turning the Strings into ints.Please do not ask for code as refusal often offends.
- 03-07-2012, 06:22 PM #4
Member
- Join Date
- Mar 2012
- Posts
- 4
- Rep Power
- 0
Similar Threads
-
Appending Seconds to Time
By reach2sudhakar in forum New To JavaReplies: 9Last Post: 10-15-2010, 09:00 AM -
Finding epoch seconds and separate yera,month,day,hr,min and seconds
By sathish kumar in forum New To JavaReplies: 4Last Post: 09-09-2010, 11:15 AM -
a constructor to convert seconds to hours, min & seconds
By senca in forum New To JavaReplies: 3Last Post: 04-05-2010, 01:08 PM -
getting time elapsed in seconds
By ali_sakar in forum New To JavaReplies: 3Last Post: 03-06-2009, 08:37 AM -
measuring time in nano seconds
By Java Tip in forum Java TipReplies: 0Last Post: 11-06-2007, 12:11 PM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks