# How can I remove leading zero?

**URL:** https://community.parabola.io/t/how-can-i-remove-leading-zero/765
**Category:** Ask a question
**Tags:** Building-Flows
**Created:** [July 7, 2020, 7:47am UTC](https://community.parabola.io/t/how-can-i-remove-leading-zero/765 "2020-07-07T07:47:38Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Joachim\_Brindeau](https://sea2.discourse-cdn.com/flex020/user_avatar/community.parabola.io/joachim_brindeau/32/1634_2.png) [@Joachim\_Brindeau](https://community.parabola.io/u/Joachim_Brindeau)
#### Post date: [July 7, 2020, 7:47am UTC](https://community.parabola.io/t/how-can-i-remove-leading-zero/765/1 "2020-07-07T07:47:38Z")

</div>

Hello,

I am trying to remove the leading zero on a bunch of phone numbers but every regex expression i found out there doesn’t work.  
The numbers look like this : 0475752600  
Numverify fails to enrich if there is a leading zero so I need this : 475752600

Any idea ?

---

<div class="post-metadata">

### Author: ![brian](https://sea2.discourse-cdn.com/flex020/user_avatar/community.parabola.io/brian/32/11_2.png) [@brian](https://community.parabola.io/u/brian)
#### Post date: [July 7, 2020, 6:48pm UTC](https://community.parabola.io/t/how-can-i-remove-leading-zero/765/2 "2020-07-07T18:48:42Z")

</div>

The Use Regex step can help here. You can use `^0*` in the find field, and leave the replace field blank!

---

<div class="post-metadata">

### Author: ![Joachim\_Brindeau](https://sea2.discourse-cdn.com/flex020/user_avatar/community.parabola.io/joachim_brindeau/32/1634_2.png) [@Joachim\_Brindeau](https://community.parabola.io/u/Joachim_Brindeau)
#### Post date: [July 8, 2020, 3:46pm UTC](https://community.parabola.io/t/how-can-i-remove-leading-zero/765/3 "2020-07-08T15:46:12Z")

</div>

Solved, thank you 🙂
