0

我正在寻找正确的方向。当我循环所有联系人时,我想以某种方式解析“batch.content”(其中包含我的消息)。我想在文本中找到任何出现的 [name] 并替换为 contact.name。

  for e in Contact.objects.filter(contact_owner=batch.user, group=batch.group):
            msg = Message.objects.create(
                recipient_number=e.mobile,
                content=batch.content,
                sender=e.contact_owner,
                billee=batch.user
            )

我的问题是,如何解析字符串“batch.content”并替换所有出现的 [name]?使用我的代码的示例将非常有帮助。

谢谢

4

1 回答 1

1
batch.content.replace('[name]', contact.name)
于 2013-03-24T18:58:42.147 回答