Converts the given externalized string representation of a value to the original value.
internalize( externalizedText, default )
externalizedText: (Text) Externalized representation of a value.
default: (Any Type) Value to return if the text cannot be internalized or an error occurs.
Text
You can experiment with this function in the test box below.
Test Input
internalize(externalize(!pv2))
returns user3
where !pv2
is User Mike Smith whose username is user3
externalize(): This function works as the inverse to 'internalize()'.
On This Page