fork(2) download
  1. import java.util.*;
  2. import java.lang.*;
  3. import java.io.*;
  4. class Ideone
  5. {
  6. public static void main (String[] args) throws java.lang.Exception
  7. {
  8. String s= "//*[@title='ab'cd']";
  9. System.out.println(s.replaceAll("(?<=\\p{L})'(?=\\p{L})", "\\\\'"));
  10. }
  11. }
Success #stdin #stdout 0.04s 4386816KB
stdin
Standard input is empty
stdout
//*[@title='ab\'cd']