Skip to content

Instantly share code, notes, and snippets.

@Park-Developer
Created April 10, 2021 01:51
Show Gist options
  • Save Park-Developer/48d8937aa4c91c072ad9b729c71b7d21 to your computer and use it in GitHub Desktop.
Save Park-Developer/48d8937aa4c91c072ad9b729c71b7d21 to your computer and use it in GitHub Desktop.
re module : search()
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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment