Skip to main content
Community site session details

Community site session details

Session Id : K4y9yr/j5mcI/3B2PJjun8
Power Apps - Building Power Apps
Unanswered

Extract only numbers from string

Like (0) ShareShare
ReportReport
Posted on 5 Apr 2023 01:46:05 by 193

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

  • timl Profile Picture
    35,382 Super User 2025 Season 2 on 05 Apr 2023 at 08:24:29
    Re: Extract only numbers from string

    @christian12 

    Here's a Regex example that will also work

    Match(TextInput1.Text, "[0-9]+").FullMatch

     

    timl_0-1680683057804.png

     

  • Community Power Platform Member Profile Picture
    on 05 Apr 2023 at 03:52:47
    Re: Extract only numbers from string

    Hi @christian12 ,

     

    This works for me too ->

    Trim(Concat(Split(TextInput1.Text,""),If(IsBlankOrError(Value(Value)),"",Value),""))

    swaminawale_0-1680666743706.png

     

  • Ami K Profile Picture
    15,665 Super User 2024 Season 1 on 05 Apr 2023 at 02:09:52
    Re: Extract only numbers from string

    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)

     

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.

Helpful resources

Quick Links

Announcing our 2025 Season 2 Super Users!

A new season of Super Users has arrived, and we are so grateful for…

Paul Stork – Community Spotlight

We are honored to recognize Paul Stork as our July 2025 Community…

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 637 Most Valuable Professional

#2
stampcoin Profile Picture

stampcoin 570 Super User 2025 Season 2

#3
Power Apps 1919 Profile Picture

Power Apps 1919 473

Loading started
Loading complete