How to change the month name to uppercase. Anyone know about this?
This is my example condition:
(new SimpleDateFormat("MMMM yyyy")).format($P{date_start})
Use .toUpperCase()
, as follows:
(new SimpleDateFormat("MMMM yyyy")).format($P{date_start}).toString().toUpperCase()