I have following problem,
Code:
String a="Yeahh, I have no a idea what's happening now!";
System.out.println(a);
a=a.replaceAll("a", "");
System.out.println(a);
Before removing 'a', result: Yeahh, I have no a idea what's happening now!
Actual Result: After removing 'a', result: Yehh, I hve no ide wht's hppening now!
Desired Result: Yeahh, I have no idea what's happening now!
Anyone can gimme some advices to achieve my desired result?