如何仅使用python
<:python:456490778085163011>
答案 0 :(得分:1)
不使用re
即可尝试此操作。
'<:python:456490778085163011>'.split(':')[1]
使用re
def printWord(txt):
resp = re.match('^<:(?P<word>\w*):\d+>\w*$', txt)
if resp:
print(resp.group('word'))
printWord('<:python:456490778085163011>')
printWord('<:java:4564907324085163011>')
printWord('<:anyword:456490778085163011>')
希望它会有所帮助!