notQuotePlus static method

String notQuotePlus(
  1. String value
)

Implementation

static String notQuotePlus(String value) {
  // lazy way
  return value
      .replaceAll("%3A", ":")
      .replaceAll("%2F", "/")
      .replaceAll("%3a", ":")
      .replaceAll("%2f", "/")
      .replaceAll("%3f", "?")
      .replaceAll("%3d", "=");
}