aspose file tools
The moose likes Beginning Java and the fly likes String[] : cut a Date every Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "String[] : cut a Date every "/"" Watch "String[] : cut a Date every "/"" New topic
Author

String[] : cut a Date every "/"

Grégoire Berclaz
Greenhorn

Joined: Feb 19, 2003
Posts: 28
Hello,
I am French and we write dates : "dd/MM/yyyy". I like to save dates in a SQL DB and the format is "yyyy/MM/dd". How can I cut a date every "/"? I like to have an array of String...
Tk you very much
Greg
Michael Morris
Ranch Hand

Joined: Jan 30, 2002
Posts: 3451
Probably the simplest way would be to use the split() method of String. For example:

That will print out:

You would need to reverse the array, but since there are always three elements that should be no problem.


Any intelligent fool can make things bigger, more complex, and more violent. It takes a touch of genius - and a lot of courage - to move in the opposite direction. - Ernst F. Schumacher
Grégoire Berclaz
Greenhorn

Joined: Feb 19, 2003
Posts: 28
It's ok... tks
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: String[] : cut a Date every "/"
 
Similar Threads
conversion of date
java.text.ParseException
Calculate Date having DIFFERENT DATE FORMATS
How to compare two different format date
how to make different date format validation ?