Day of week in rule

I’ve got a rule that gets the the date & time in “dd/mm/yy HH:mm” format from a DateTime item, with this line

val String MyStringFromDateTimeType = ThingUpdated.state.format("%1$td.%1$tm.%1$ty %1$tH:%1$tM")

I’d like to get a more eye-friendly date format instead, eg: “Wednesday 10 April”.

I’ve had a search but can’t how to do it. Does anyone know please?

As mentioned here, the full syntax for String formatting is documented here.

thank you. What’s covered on the 2nd link was what i’d been trying to find.