Need help in getting the java regex to replace = sing between parenthesis with #, my input text is
8=FIX.4.&49=(550=0449)&35=RIO&76=(AB=4560)&
expected output string
8=FIX.4.&49=(550#0449)&35=RIO&76=(AB#4560)&
So would like to replace = char only within (550=0449) and (AB=4560) with # so the output should contain (550#0449) and (AB#4560).