ascii
Last updated
Last updated
ascii() function is the Standard function available in 200OK.
Description: The fx_ascii function returns the input string after removing characters that do not fall within the normal ASCII values range.
Syntax : fx_ascii(text)
Example: `fx_ascii(‘whÿ do’) returns 'wh do' as the response. Here, the character 'ÿ' is removed because it does not fall within the ASCII range of (65-90) or (97-122)
Request Side :
Response Side :