728x90
반응형
from difflib import SequenceMatcher
txt = '큐알론점안액0.3%(히알루론산나트륨)_'
pat = '히알루론산나트륨)_(1.05MG/0.35ML'
match = SequenceMatcher(None, txt, pat).find_longest_match(0, len(txt), 0, len(pat))
print(match)
print(txt[match.a: match.a + match.size]) # -> apple pie
print(pat[match.b: match.b + match.size])
sum_txt = txt[:match.a] + pat[match.b:]
print(sum_txt)
728x90
반응형
'사소한 Tip . 오류 해결법' 카테고리의 다른 글
[Tensorflow] ValueError: setting an array element with a sequence. (0) | 2021.12.07 |
---|---|
Tensorflow Warning Entity bound method ... Please report this to the AutoGraph team. 해결 방법 (0) | 2021.12.02 |
[Json] Ai Hub 공공데이터 형식(ImageSet format) labelme형태로 변경하기 (0) | 2021.11.25 |
[Tensorflow] TFRecord 형식 데이터 처리 (0) | 2021.11.24 |
CMD출력 Warning 삭제(in.Tensorflow) (0) | 2021.11.24 |