======RemoveChars(text, chars) ====== Category: Text function \\ =====Description===== This function removes the individual characters specified in //chars// from //text//. \\ =====Arguments===== ^Argument^Type^Description^ |text|Text|Any text value from which the characters in //chars// are removed.| |chars|Text|The set of individual characters to remove from //text//.| **Return value type:** Text \\ =====Remarks===== The individual characters listed in //chars// are removed from //text//, not just the whole value of //chars// as a string. All instances of each character in //chars// are removed. If none of the characters in //chars// appear in //text//, the whole value of //text// is returned. \\ =====Examples===== removechars('Jayne Mansfield', 'aeiou') //Returns 'Jayn Mnsfld' removechars('Jane Goodall', 'al') //Returns 'Jne Good' removechars('Jane Seymour','clk') //Returns 'Jane Seymour' removechars(102102102,12) //Returns '000' (Numbers are implicitly converted to text; value is returned as text) \\ =====See also===== * [[syntax:functions:remove|Remove(text, start, length)]] * [[syntax:functions:removeend|RemoveEnd(text, length)]] * [[syntax:functions:removestart|RemoveStart(text, length)]] * [[syntax:functions:removetext|RemoveText(text, string)]]