Note
ამ გვერდზე წვდომა ავტორიზაციას მოითხოვს. შეგიძლიათ სცადოთ შესვლა ან დირექტორიების შეცვლა.
ამ გვერდზე წვდომა ავტორიზაციას მოითხოვს. შეგიძლიათ სცადოთ დირექტორიების შეცვლა.
Syntax
Text.Remove(text as nullable text, removeChars as any) as nullable text
About
Returns a copy of the text value text with all the characters from removeChars removed.
Example 1
Remove characters , and ; from the text value.
Usage
Text.Remove("a,b;c", {",",";"})
Output
"abc"