Announcements
Hi Guys,
I have a dynamic text input box.
I want to only extract numbers and remove everything else. Example letters, spaces, special characters etc.
Any help is greatly appreciated.
Thanks
Either of these tend to work for me:
Trim(Concat(Split(Label7.Text,""),If(IsBlankOrError(Value(Value)),"",Value),""))
Concat(Filter(Split(Label7.Text,""),IsNumeric(Value)),Value)
Hi @christian12 ,
This works for me too ->
Trim(Concat(Split(TextInput1.Text,""),If(IsBlankOrError(Value(Value)),"",Value),""))
@christian12
Here's a Regex example that will also work
Match(TextInput1.Text, "[0-9]+").FullMatch
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Users!
Congratulations to our 2025 community superstars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Haque 88
WarrenBelz 85 Most Valuable Professional
Valantis 45