Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

extracting only numers from a Text

I need help to get the number from a Text .

For eg .

If Text is "23 T 34,L" , digits could appear randomly in the Text

So if extracted The value should be in the form of Number .

2334 ..

Any idea to solve it .

1 Solution

Accepted Solutions
Not applicable
Author

Hi,

Try using the below code.

=purgechar(upper(Fieldname),'ABCDEFGHIJKLMNOPQRSTUVWXYZ')

- Sridhar

View solution in original post

2 Replies
Not applicable
Author

Hi,

Try using the below code.

=purgechar(upper(Fieldname),'ABCDEFGHIJKLMNOPQRSTUVWXYZ')

- Sridhar

Not applicable
Author

I already Solved it .Thanks for the help.