How should I design this Regulat expression to get rid of leading 0 from String?

I have a Text string "00000012345608912"

regexreplaceall("0*$","00000012345608912",""),     This will remove the 0 in tail.

I want result to be 12345608912, remove the first leading 0 numbers.

Thanks

  Discussion posts and replies are publicly visible