I’d like to know if there’s a way that I could convert this date “11-dez-1989” to “11-12-1989” where “dez” is a abbreviation of Dezembro in Portuguese. In English is December.
I tried this:Assign- birthday = "11-dez-1989"
Then I use a second assign:
And the expression in the second Assign activity is:
However, I get the error: Assign: String '11-dez-1989' was not recognized as a valid DateTime
I extract the data from a csv file which is written in Portuguese, that’s why I have to use the Brazilian Date Time Format. This date I have to put in a web form that only accepts the dd-MM-yyyy pattern.
How could I solve this issue? I’ve tried pretty much everything that I know.