I have written the following code to match an pattern and it works well returning true for matched
Pattern pattern=Pattern.compile("(:(TRANSID,[0-9]*))?(:(PAYTYPE,[0-9&&[01]]{1}))?");
Matcher matcher=pattern.matcher(":TRANSID,0:PAYTYPE,0");
System.out.println(matcher.matches());
Output=true
but the below code returns false when PAYTYPE and TRANSID exchange there positions. Please help
Pattern pattern=Pattern.compile("(:(TRANSID,[0-9]*))?(:(PAYTYPE,[0-9&&[01]]{1}))?");
Matcher matcher=pattern.matcher(":PAYTYPE,0:TRANSID,0");
System.out.println(matcher.matches());
Output=false
Please let me know the change need to be done in the pattern so that it returns true even though order changes but parameters should be the same.