79519553

Date: 2025-03-19 08:27:05
Score: 1
Natty:
Report link

may be

    //remove the trailing white space 
    String medianRes = xmlString.replaceAll("\\s+$","");
    //remove other white space
    String res = medianRes.replaceAll("\\s+$"," ");

^ is meaning start with some char; $ is meaning end with some char;

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: shuoshi liang