Goran M.

  • 1 question asked
  • 2 answers
  • 0 best answers (0%)
  • Variable extractor Custom decoder?

    Dear Support, I'm referring to a similar question and that is the Custom decoder. The answer you gave is using the javascript decodeURIComponent() function but when I do use...
    Goran M.
    Goran M.

    Goran M.

    Level
    0
    24 / 100
    points
    Goran M.
    Goran M.

    Goran M.

    Level
    0
    24 / 100
    points
    Dear Neil W., I tried your proposal but it does not work. Instead this works : var decodedValue = encodedValue.replace(/\\u0025/g,'%'); so the optimized code would...
  • Variable extractor Custom decoder?

    Dear Support, I'm referring to a similar question and that is the Custom decoder. The answer you gave is using the javascript decodeURIComponent() function but when I do use...
    Goran M.
    Goran M.

    Goran M.

    Level
    0
    24 / 100
    points
    Goran M.
    Goran M.

    Goran M.

    Level
    0
    24 / 100
    points
    Dear Support, Here the solution: function decode(encodedValue) { const searchValue ="\\u0025"; const replaceWith = '%'; var decodedValue...