三种分列方式,对比,还是按宽度截取,最佳 | $pathSour = ".\prt" | | $fileDest = "11" | | | | [System.Collections.ArrayList] $alc = @() | | | | $res1 = "^\s{2,3}\d{1,2}\s{4}.+" | | $res2 = "^\s{11}\S.+" | | $rea = "$res1" + "|" + "$res2" | | $renfs = "(\w{4})(\w{1,4})?(\w{1,4})?(\w{1,5})?(.*)" | | $renfd = "`$1-`$2-`$3-`$4-`$5" | | $rew = "^(.{4})(.{46})(.{13})(.{15})(.+)" | | $re2s = '^\s{2,3}(\d{1,2})\s{4,}(.+?)(?<=\S)\s{2,}(\d+(?:X\d+)?)\s{2,}(\S+(?:\s\S+)*)\s{2,}([\d]+(?:[.]\d+)?(?:\sM)?)$' | | $re2d = "`t`$1`t`$2`t`$3`t`$4`t`$5" | | | | get-childitem -path $pathSour "*.prt" | foreach-object { | | write-host $_.basename | | $fc = (get-content -Encoding utf8 $_.fullname) -match $rea | | for ($i = 0 ; $i -lt $fc.count ; $i++) | | { | | if ($fc[$i] -match "^\s{2}[\s\d]\d\s{4}") | | { | | $s1 = $fc[$i] | | | | $a1 = (" " + $s1) -replace "(?<=\S) (?=\d)"," " -split " +" | | $a1line1 = $a1 -join "`t" | | | | $a2line1 = $s1 -replace $re2s,$re2d | | | | $s1 -match $rew | out-null | | $aw = @("") * 6 | | for ($j = 1 ; $j -le 5 ; $j++) | | { | | $aw[$j] = $matches[$j].trim() | | } | | $awline1 = $aw -join "`t" | | | | if ( ($a1line1 -ne $awline1 ) -or ($a2line1 -ne $awline1 )) | | { | | $alc.add( $_.basename + "`n" + $s1) | out-null | | $alc.add( "1" + $a1line1 + "`n" + "2" + $a2line1 + "`n" + "w" + $awline1 + "`n" ) | out-null | | } | | } | | } | | } | | | | $alc | out-file -encoding utf8 ($fileDest + "-c.txt")COPY |
下面12w开头的行,对应三种方式 | mdiv610ab21lr0035 | | 21 SEE PIPING SPECIAL SUPPORT DRAWING SS1139 1 | | 1 21 SEE PIPING SPECIAL SUPPORT DRAWING SS1139 1 | | 2 21 SEE PIPING SPECIAL SUPPORT DRAWING SS1139 1 | | w 21 SEE PIPING SPECIAL SUPPORT DRAWING SS1139 1COPY |
|