String temp = "77"; // It can be 0 or 100 or any value
// So the pattern will be like this only but number can be change anytime
String inclusion = "100;0;77;200;....;90";
我需要编写一个正则表达式,以便我可以查看 temp 是否存在于包含中,因此我编写了这样的 regexPattern。
// This is the regular Expression I wrote.
String regexPattern = "(^|.*;)" + temp + "(;.*|$)";
那么你认为这个正则表达式每次都能工作还是那个 regexPattern 有问题?
if(inclusion.matches(regexPattern)) {
}