I am trying to delete characters in the string if it includes the characters. so with this code it finds them once but if in the string they are used twice this code does not work. any ideas how to fix it? P.S with loop does not work either already tried :(
transform(value: string, ...args: unknown[]): any {
let finalValue = value
if (value.includes(""")) {
let lastValue = value.replace(""", "")
finalValue = lastValue
}
if (value.includes("'")) {
let lastValue = value.replace("'", "")
finalValue = lastValue
}
}
return finalValue
}
question from:https://stackoverflow.com/questions/66066155/delete-specific-characters-or-words-from-string-using-pipes-angular-11