There is no sunch thing that I know of in SimpleDateFormat but what you can do is check with a regular expression if the input filename match, and if it does extract what matched to create your date.
This is a quick regex that validates your criterias:
(.*?)([0-9]{4})([^0-9]*?)([a-z]+)(.*?)([0-9]{2})(.*?)([0-9]{2})(.*?)([0-9]{4})_([^.]+)[.]zip
Which means (it's really not that complicated)
(.*?) // anything
([0-9]{4}) // followed by 4 digits
([^0-9]*?) // followed by anything excepted digits
([a-z]+) // followed by a sequence of text in lowercase
(.*?) // followed by anything
([0-9]{2}) // until it finds 2 digits
(.*?) // followed by anything
([0-9]{2}) // until it finds 2 digits again
(.*?) // followed by anything
([0-9]{4}) // until if finds 4 consecutive digits
_([^.]+) // an underscore followed by anything except a dot '.'
[.]zip // the file extension
You can use it in Java
String filename = "19882012ABCseptemberDEF03HIJ12KLM0156_249.zip";
String regex = "(.*?)([0-9]{4})([^0-9]*?)([a-z]+)(.*?)([0-9]{2})(.*?)([0-9]{2})(.*?)([0-9]{4})_([^.]+)[.]zip";
Matcher m = Pattern.compile(regex).matcher(filename);
if (m.matches()) {
// m.group(2); // the year
// m.group(4); // the month
// m.group(6); // the day
// m.group(8); // the hour
// m.group(10); // the minutes & seconds
String dateString = m.group(2) + "-" + m.group(4) + "-" + m.group(6) + " " + m.group(8) + m.group(10);
Date date = new SimpleDateFormat("yyyy-MMM-dd HHmmss").parse(dateString);
// here you go with your date
}
Runnable sample on ideone: http://ideone.com/GBDEJ
Edit:
you can avoid matching what you dont wan't by removing the parenthesis around what you dont care. Then the regular expression becomes .*?([0-9]{4})[^0-9]*?([a-z]+).*?([0-9]{2}).*?([0-9]{2}).*?([0-9]{4})_[^.]+[.]zip and the matched group becomes
group(1): the year
group(2): the month
group(3): the day
group(4): the hour
group(5): the minutes & secondes
'(tick character). What does it stand for? It doesn't seem that it's included in parsed filename and even "broken down version". – GreyCat Sep 3 '12 at 2:301988is "just a random number", while2012is a valid value that represents a year. Do you have a range/list of valid years or something like that? – GreyCat Sep 3 '12 at 2:44