def cleantz( time : String ) : String = {
var sign_builder= new StringBuilder ++= time
println(sign_builder)
var clean_sign = ""
if (sign_builder.charAt(23).toString == "-"){
clean_sign= sign_builder.replace(23,24,"-").toString()
}else{
clean_sign = sign_builder.replace(23,24,"+").toString()
}
var time_builder= new StringBuilder ++= clean_sign
if (time_builder.charAt(26).toString == ":"){
val cleanz = time_builder.deleteCharAt(26)
cleanz.toString()
}else{
time_builder.toString()
}
}
val start = ISO8601Format.parse(cleantz(01/01/2017 6:54 PM))
I get this error:
java.lang.StringIndexOutOfBoundsException: String index out of range: 23
java.time
For the sake of completeness I should like to contribute the modern answer. It’s quite simple and straightforward.
I am sorry that I can neither write Scala code nor test it on my computer. I have to trust you to translate from Java.
Now
cleantz("01/01/2017 6:54 PM")
returns2017-01-01T18:54+01:00
, which is in ISO 8601 format. I would immediately suppose that you’re set. If for some reason you want or need the seconds too, replace.toString();
with:Now the result is
2017-01-01T18:54:00+01:00
. In both cases the milliseconds would have been printed if there were any.Since
AM
andPM
are hardly used in other languages than English, I suggest you give an English-speaking locale toDateTimeFormatter.ofPattern()
(in my example I usedLocale.US
). Failing to provide a locale will cause the code to fail on many computers with non-English language settings.Why
java.time
?SimpleDateFormat
and friends are long outdated and notoriously troublesome. I cannot count the questions asked on Stack Overflow becauseSimpleDateFormat
behaved differently from what every sane programmer would have expected, or offered no help to debug the simple errors we all make from time to time.Joda-Time was good for a long time. Today the Joda-Time homepage says:
java.time
is the modern Java date & time API built using the experience from Joda-Time and under the same lead developer, Stephen Colebourne. It is built into Java 8 and later, and a backport exists for Java 6 and 7, so you can use the same classes there too.