I have a list of unique identifiers but they are all concatenated with various amount of 0's in front of them. I basically need to pull the unique identifier after the 0's. All unique identifiers start with a letter.
I tried doing this through the text to columns and using 0 as a delimiter but some of the unique id's have 0's in them so that didn't work.
Examples below (all starting in cell A1). I would like the result inputted in cell B1. So the first one in B1 should be ACP4-16, in B2 should be MH13-155, B3 should be ACP3-40, and so forth.
<table border="0" cellpadding="0" cellspacing="0" width="80"><colgroup><col style="width:60pt" width="80"> </colgroup><tbody><tr style="height:15.0pt" height="20"> <td class="xl64" style="height:15.0pt;width:60pt" height="20" width="80">000ACP4-16</td> </tr> <tr style="height:15.0pt" height="20"> <td class="xl64" style="height:15.0pt;border-top:none" height="20">00MH13-155</td> </tr> <tr style="height:15.0pt" height="20"> <td class="xl64" style="height:15.0pt;border-top:none" height="20">000ACP3-40</td> </tr> <tr style="height:15.0pt" height="20"> <td class="xl64" style="height:15.0pt;border-top:none" height="20">0000000T67</td> </tr> <tr style="height:15.0pt" height="20"> <td class="xl64" style="height:15.0pt;border-top:none" height="20">0000RV4-68</td> </tr> <tr style="height:15.0pt" height="20"> <td class="xl64" style="height:15.0pt;border-top:none" height="20">0000LPA-28</td> </tr> <tr style="height:15.0pt" height="20"> <td class="xl64" style="height:15.0pt;border-top:none" height="20">0000RV4-36</td> </tr> <tr style="height:15.0pt" height="20"> <td class="xl64" style="height:15.0pt;border-top:none" height="20">0000RV4-72</td> </tr> <tr style="height:15.0pt" height="20"> <td class="xl64" style="height:15.0pt;border-top:none" height="20">00MH13-132</td> </tr> <tr style="height:15.0pt" height="20"> <td class="xl64" style="height:15.0pt;border-top:none" height="20">000M15S-32</td> </tr> <tr style="height:15.0pt" height="20"> <td class="xl64" style="height:15.0pt;border-top:none" height="20">000ACP3-61</td> </tr> <tr style="height:15.0pt" height="20"> <td class="xl64" style="height:15.0pt;border-top:none" height="20">0000000T46</td> </tr> </tbody></table>
I tried doing this through the text to columns and using 0 as a delimiter but some of the unique id's have 0's in them so that didn't work.
Examples below (all starting in cell A1). I would like the result inputted in cell B1. So the first one in B1 should be ACP4-16, in B2 should be MH13-155, B3 should be ACP3-40, and so forth.
<table border="0" cellpadding="0" cellspacing="0" width="80"><colgroup><col style="width:60pt" width="80"> </colgroup><tbody><tr style="height:15.0pt" height="20"> <td class="xl64" style="height:15.0pt;width:60pt" height="20" width="80">000ACP4-16</td> </tr> <tr style="height:15.0pt" height="20"> <td class="xl64" style="height:15.0pt;border-top:none" height="20">00MH13-155</td> </tr> <tr style="height:15.0pt" height="20"> <td class="xl64" style="height:15.0pt;border-top:none" height="20">000ACP3-40</td> </tr> <tr style="height:15.0pt" height="20"> <td class="xl64" style="height:15.0pt;border-top:none" height="20">0000000T67</td> </tr> <tr style="height:15.0pt" height="20"> <td class="xl64" style="height:15.0pt;border-top:none" height="20">0000RV4-68</td> </tr> <tr style="height:15.0pt" height="20"> <td class="xl64" style="height:15.0pt;border-top:none" height="20">0000LPA-28</td> </tr> <tr style="height:15.0pt" height="20"> <td class="xl64" style="height:15.0pt;border-top:none" height="20">0000RV4-36</td> </tr> <tr style="height:15.0pt" height="20"> <td class="xl64" style="height:15.0pt;border-top:none" height="20">0000RV4-72</td> </tr> <tr style="height:15.0pt" height="20"> <td class="xl64" style="height:15.0pt;border-top:none" height="20">00MH13-132</td> </tr> <tr style="height:15.0pt" height="20"> <td class="xl64" style="height:15.0pt;border-top:none" height="20">000M15S-32</td> </tr> <tr style="height:15.0pt" height="20"> <td class="xl64" style="height:15.0pt;border-top:none" height="20">000ACP3-61</td> </tr> <tr style="height:15.0pt" height="20"> <td class="xl64" style="height:15.0pt;border-top:none" height="20">0000000T46</td> </tr> </tbody></table>