Hi i have to replace at least 100 instances of a string in a single code. The string i want to replace is
Music2.playGeneric2(context, R.raw.try_again);//text after R.raw.* could be anything
or
Music2.playGeneric2(context, R.raw.tryagain);
with
Music2.playGeneric2(context, "try_again.mp3");
and
Music2.playGeneric2(context, "tryagain.mp3");
I have found a lot for this but could not create a regular expression as i am new to it, hope to get some help....Thanx in advance