Usecase: If we use default replace string () function , what we observe that it does not allow to activate the integration. So we need to create a custom javascript function to replace a string with another one.
Here we will replace "_" with "/".
JS code:
function replaceString(value, str1,str2){
output = value.replace(new RegExp(str1, "g"), str2)
return output;
}
Implementation steps with screenshots:
No comments:
Post a Comment