escapeMarkDown

escapeMarkDown() function is the Standard function available in 200OK.

Description : The escapemarkdown function processes a string by removing underscores, hyphens, and other special characters, resulting in a sanitized string containing only alphabetic characters.

Syntax : fx_escapemarkdown()

Example : "fx_escapemarkdown(c'e*p@t-e_s&%$#!)" it returns "ceptes" by removing all the special characters.

Scenario : In an online forum platform, users are posting comments containing special characters such as underscores, hyphens, and asterisks, which might interfere with the formatting of the text. To ensure proper display of comments, the fx_escapemarkdown function is employed to sanitize the text by removing these special characters, improving readability and user experience.

Request Side :

Response Side :

Last updated