Pad left with zeroes

前端 未结 4 812
盖世英雄少女心
盖世英雄少女心 2020-12-01 12:21

I want to pad left every number with zeroes (it has to be 8 digits) in my string.

e.g.

asd 123 rete > asd 00000123 rete
4444 my text > 00004444         


        
4条回答
  •  我在风中等你
    2020-12-01 12:36

    Thread is old but maybe someone needs this.

    Nickon states he wants to use regex. Why? Doesn't matter, maybe its fun. I had to do a inline replace in SQL so some home made SQL functions that calls a C# regex has been helpful.

    What I needed to pad looked something like this:

    abc 1.1.1
    abc 1.2.1
    abc 1.10.1
    

    and I wanted:

    abc 001.001.001
    abc 001.002.001
    abc 001.010.001
    

    So I could sort it alphabetiacally.

    The only solution so far (that I found) was to do the padding and truncating to right length in two steps. I couldn't use a Lambda since this was in SQL and I hadn't prepared my functions for that.

    //This pads any numbers and truncates it to a length of 8
    var unpaddedData = "...";
    var paddedData = Regex.Replace(unpaddedData , "(?<=[^\d])(?\d+)",
                                                         "0000000${digits}");
    var zeroPaddedDataOfRightLength = Regex.Replace(paddedData ,"\d+(?=\d{8})","");
    

    Explanations:

    (?<=[^\d])(?\d+)
    (?<=[^\d])       Look behind for any non digit, this is needed if there are 
                     more groups of numbers that needs to be padded
    (?\d+)   Find the numbers and put them in a group named digits to be 
                     used in the replacement pattern
    
    0000000${digits} Pads all the digits matches with 7 zeros
    
    \d+(?=\d{8})     Finds all digits that are followed by at exactly 8 digits. 
                     ?= Doesn't capture the 8 digits.
    
    Regex.Replace(...,"\d+(?=\d{8})","")   
                     Replaces the leading digits with nothing leaving the last 8.
    

提交回复
热议问题