Is there anybody who can tell me how to pass problem10? I tried to use
foo\((.*?), (.*?)\)
and replaced with
bar\(\2, \1\)
It worked well on my local PC, but cannot pass the problem.
If I use .*? pattern, I cannot catch any part of string, what should I use to pass the problem?
Is there anybody who can tell me how to pass problem10? I tried to use
foo\((.*?), (.*?)\)and replaced with
bar\(\2, \1\)It worked well on my local PC, but cannot pass the problem.
If I use
.*?pattern, I cannot catch any part of string, what should I use to pass the problem?