URLEncoder. Querystring option.
Posted: Thu Aug 07, 2008 10:23 am
Hi,
My little wish is, to have an option for encoding querystrings with URLEncoder.
In example:
Would be more comfortable than...
Best regards
Wolf
My little wish is, to have an option for encoding querystrings with URLEncoder.
In example:
Code: Select all
Debug URLEncoder ( "Hello Fred, I've a little wish. #PB_Encoder_QueryString" )
; Hello+Fred,+I've+a+little+wish.+%23PB_Encoder_QueryString
Debug URLEncoder ( "Hello Fred, I've a little wish. #PB_Encoder_QueryString" , #PB_Encoder_QueryString )
; Hello+Fred,+I've+a+little+wish.+%23PB_Encoder_QueryString
Code: Select all
Debug ReplaceString ( URLEncoder ( "Hello Fred, I've a little wish. #PB_Encoder_QueryString" ) , "%20" , "+" )
Wolf