How can I have changing DateTime Now by Month format from English to Indonesia in UiPath?
Hi,
How about the following?
DateTime.ParseExact(yourString,"MMMM",System.Globalization.CultureInfo.InvariantCulture).ToString("MMMM",System.Globalization.CultureInfo.CreateSpecificCulture("id"))
Regards,
1 Like
Hi @samarasenja
How about this expression?
DateTime.Now.ToString("MMMM", System.Globalization.CultureInfo.CreateSpecificCulture("id-ID")).ToString
Regards
Gokul
1 Like
This is solved, Thanks
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.