我有一个 python f-string 如下:
def send_string():
ticket_id=123
message = f'{ticket_id} Jira created successfully'
return message
def extract_ticket_from_message(message):
#pseudo code
# Is it possible to extract the ticket id without parsing the
# whole string and using regex
有没有一种方便的方法可以从 f 字符串中提取ticket_id值,而不必在 Python 3.6 中使用正则表达式解析整个字符串?