프로젝트

일반

사용자정보

개정판 dbfd98ba

IDdbfd98ba54425cf27985cb09f20f315f1618e99b
상위 b6307955
하위 e04cf37f

GeunHo Song 이(가) 약 2년 전에 추가함

issue #2104 숫자 문자 숫자 로 되어있는 StreamNo 정렬 완료.

차이점 보기:

HYTOS/HYTOS/HMBTable.py
139 139
    @property
140 140
    def stream_no_extract_number(self):
141 141
        import re
142
        import math
143 142

  
144
        result = ""
143
        result = int(sys.maxsize)
145 144
        try:
146
            if self.stream_no_text:
145
            strResult = re.sub(r'[0-9]', '', self.stream_no_text)
146
            if len(strResult) > 0:
147
                strIndex = self.stream_no_text.index(strResult[0])
148
                if(strIndex > 0):
149
                    result = re.sub(r'[^0-9]', '', self.stream_no_text[:strIndex])
150
            else:
147 151
                result = re.sub(r'[^0-9]', '', self.stream_no_text)
148 152

  
149 153
            if len(result) ==0:

내보내기 Unified diff

클립보드 이미지 추가 (최대 크기: 500 MB)