Question about replacing special characters
Hello good evening, I need help, well, it turns out that I have a problem, for example, when I want to omit certain special characters, I use substitute, all fine for example if I only want to omit the symbol "&", but when I put another symbol, for example "%", instead of replacing it, I get a blank space, I have already used substitute, stripwith, a regex, and I can not find a solution, I attach my code.
a!localVariables(
local!subs:substitute(ri!name," & "," "),
local!formatB: cleanwith(
local!subs,
cons!GT_CONS_Clean
/*1234567890qwertyuiopñáéÃ%ADóúÃ%81ÉÃ%8DÓÚQWERTYUIOPasdfghjklASDFGHJKLzxcvbnm-ZXCVBNMÑ_ */
),
if(
length(
local!formatB
) = 0,
"attach",
local!formatB
)
)
I have already tried these functions and I can't get that.
regexreplaceall("\s\W", local!sub, "_")
stripwith(ri!name," &#$%&/|¡? ")
For example, when I try to test this string, instead of a single blank space, I get the number of spaces when I omit another type of character, for example this one
"ABBA80650-20002908-HM TESTING & % $ # RELEASE"
So, here I can't get those extra blanks removed :S

Thank you for your attention.
