Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. # Regular Expression <code> import re text = "문의사항이 있으면 032-232-3245 으로 연락주시기 바랍니다." regex = re.compile(r'\d\d\d-\d\d\d-\d\d\d\d') matchobj = regex.search(text) phonenumber = matchobj.group() print(phonenumber) </code> open/re.txt Last modified: 2024/10/05 06:15by 127.0.0.1