[python]英語以外の文字を削除
import re
word="하하하"
reg = re.compile(r'[가-힣a-zA-Z]')
if reg.match(word):
print("It is an alphabet")
else:
print("It is not an alphabet")
Reference
この問題について([python]英語以外の文字を削除), 我々は、より多くの情報をここで見つけました https://velog.io/@hanovator/python-한글영문이-아닌-문자-제テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol