Skip to main content Skip to complementary content

KeepChar - script and chart function

KeepChar() returns a string consisting of any of the characters in the first string that match the characters in the second string. This function is case-sensitive.

Syntax:  

KeepChar(text, keep_chars)

Return data type: string

Arguments
Argument Description
text The original string.
keep_chars A string containing the characters in text to be kept. This argument is case-sensitive.
Example: Chart expressions
Example Result
KeepChar ( 'a1b2c3','123' ) Returns 123
KeepChar ( 'a1b2c3','1234' ) Returns 123
KeepChar ( 'a1b22c3','1234' ) Returns 1223
KeepChar( 'a1b2c3','312' ) Returns 123

Example - KeepChar fundamentals

Example - KeepChar scenario to parse unstructured text

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!