Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to extract neumeric values only seperated with commas from a string

Hi All,

I have a string like

Ex:

210 sample, 220 single, 230 one, 240 abcvalue

I want only neumeric values seperated with commas.

How can i extract the neumeric values.

Thanks.....

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Hi, try the keepchar function:

=keepchar ( '210 sample, 220 single, 230 one, 240 abcvalue ','0123456789,' )

View solution in original post

2 Replies
swuehl
MVP
MVP

Hi, try the keepchar function:

=keepchar ( '210 sample, 220 single, 230 one, 240 abcvalue ','0123456789,' )

Not applicable
Author

Hi Swuehl,

Thanks for your reply

It is working....

Thanks...