Someone can help me? I need to convert this date string "2021-07-14T00:00:00.000-0300" into this 14th/july in kotlin.
This is what i was trying to.
private fun ajusteDeData(baseData: String): String{
//Convert baseData into formatedDate ("14th / July")
var input = "2021-07-14T00:00:00.000-0300"
var output_formated = "14 / 07"
/*
* how to do this?
*/
return output_formated
}
Anyone can help me? Thanks.