개정판 dbfd98ba
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