This Function returns a <string>, which is the specified Value with all the non printable chars converted to their corresponding ASCII value, between "<" and ">".
Parameters
Value <string> |
|
String to encode. |
|
|
Example 1
|
|
Example 2 |
Encode("Kalipsoisgreat.")
Result = Kalipso<3>is<8>great. |
|
Encode("Kalipsoisgreat.")
Result = Kalipso<0>is<0>great. |
- Only the chars with the following ASCII values are converted: 0 to 31, 34 and 60.
|
Updated: 11/5/2014 11:49 AM |