Lua SwxWare v13.10
This helper function checks if the given parameter is of type string.
local bString = IsString(str)
This function returns a boolean value.
Examples:
local bString = IsString("I am a string") PBXScript.OutputTrace("bString = " .. tostring(bString)) --> bString = true
local bString = IsString(12345) PBXScript.OutputTrace("bString = " .. tostring(bString)) --> bString = false
By Tom Wellige