How to get Ordinal Indicators

For eg. while writing date, i need to pass ‘22 October 2019’ instead of ‘22 October 2019’ similarly ‘21st October 2019’ for ‘21 October 2019’.

Thanks in Advance.

I don’t think there is any nice way to do this.
You will have to either create some logic to work out which one to add

get the last digit of the date and then add the relevant ordinal indicator.

i.e. 1 = “st” / 2 = “nd” / 3 = “rd” Else “th”

Or try something like this VB Code and use the invoke code activity