aliceblue11 commited on
Commit
d614bf3
·
verified ·
1 Parent(s): 6b5510a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -8,7 +8,7 @@ import re # 특수문자 제거를 위한 정규식 사용
8
 
9
  def clean_text(text):
10
  # 정규식을 사용하여 특수문자를 제거하되, '-'와 '+'는 제외
11
- return re.sub(r'[^\w\s-+]', '', text)
12
 
13
  def extract_keywords(file):
14
  # 엑셀 파일 읽기
 
8
 
9
  def clean_text(text):
10
  # 정규식을 사용하여 특수문자를 제거하되, '-'와 '+'는 제외
11
+ return re.sub(r'[^\w\s\-\+]', '', text)
12
 
13
  def extract_keywords(file):
14
  # 엑셀 파일 읽기