我有一个像这样的 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?
非常感谢!