Dynamics CRM 365 Replace characters with empty string through Javascript using Regex
Views (750)
We often get the requirement to replace special characters, Alphanumeric, Safe String with empty string in our CRM Project. I have added generic Javascript code to replace most of the characters with empty string. Code uses regular expression to replace characters. Code Snippet ReplaceCharacters = function (control, type) { var inputVal = $(control).val(); inputVal =… Continue reading Dynamics CRM 365 Replace characters with empty string through Javascript using Regex

Like
Report
*This post is locked for comments