This function enables you to accept a String as input and return an Encoded string value for the same.
Syntax
STRINGENCODE(StringInput)
where,
- StringInput : Is the String that is to be encoded
So let us consider an example where we want to pass a string value to
STRINGENCODE(“encode the string value”)
Will result into
Encode%20the%20string%20value
Now if you take an example here to send a WhatsApp message using your custom App and want to pass a string with special characters then in that case you encode the WhatsApp Message string using STRINGENCODE function.
The output of the same would be something like this in the image below.
You can thus make use of the StringEncode function to encode and securely send data across networks.