私は MessageFormat を持っています。
final MessageFormat messageFormat = new MessageFormat("This is token one {0}, and token two {1}");
次のような文字列があるかどうか疑問に思っています。
String shouldMatch = "This is token one bla, and token two bla";
String wontMatch = "This wont match the above MessageFormat";
上記の文字列が messageFormat を使用して作成されたかどうかを確認するにはどうすればよいですか? つまり、それらは messageFormat と一致しますか?
どうもありがとう!