File size: 79 Bytes
a314390 |
1 2 3 4 |
import re
def extract_citations(text):
return re.findall(r"\[\d+\]", text)
|
a314390 |
1 2 3 4 |
import re
def extract_citations(text):
return re.findall(r"\[\d+\]", text)
|