This function enables you to accept a String as input and returns an Encoded string value for the same. It encodes the space and the special characters \ % ^ { } [ ] | ” <> `.
Syntax
STRINGENCODE(StringInput)
where,
- StringInput: Is the String that is to be encoded
So for example,
STRINGENCODE(“encode string”)
Will result into
encode%20string
To know more on how to use the function refer to this article here.