In Java, how can you determine if a String matches a format string (ie: song%03d.mp3)?
song%03d.mp3
In other words, how would you implement the following function?
You can use Java regular expressions - please see http://www.vogella.de/articles/JavaRegularExpressions/article.html
Thanks...