After building an instance of DateTimeFormatter, is it possible to extract
from it the pattern as a String?
Something like this:
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("MM/dd/yyyy");
String pattern = formatter.toPattern(); //example
Is there any way this can done?
Regards!