メインコンテンツまでスキップ
バージョン:25.2

URLEncode

  • function

  • The URLEncode() function returns a "URL safe" version of a text string by substituting "+" for any spaces, and encoding other special characters using %xx where xx is two hexadecimal digits representing the character's value.

  • Examples: +

     get urlEncode of "Good Times & Bad"
    put it -- "Good+Times+%26+Bad"
  • Related: URLDecode, makeURL, extractURL