<small id='uWjw1'></small><noframes id='uWjw1'>

    • <bdo id='uWjw1'></bdo><ul id='uWjw1'></ul>
    <legend id='uWjw1'><style id='uWjw1'><dir id='uWjw1'><q id='uWjw1'></q></dir></style></legend>

      1. <i id='uWjw1'><tr id='uWjw1'><dt id='uWjw1'><q id='uWjw1'><span id='uWjw1'><b id='uWjw1'><form id='uWjw1'><ins id='uWjw1'></ins><ul id='uWjw1'></ul><sub id='uWjw1'></sub></form><legend id='uWjw1'></legend><bdo id='uWjw1'><pre id='uWjw1'><center id='uWjw1'></center></pre></bdo></b><th id='uWjw1'></th></span></q></dt></tr></i><div id='uWjw1'><tfoot id='uWjw1'></tfoot><dl id='uWjw1'><fieldset id='uWjw1'></fieldset></dl></div>
      2. <tfoot id='uWjw1'></tfoot>

        如何替换“ "的所有实例在带有换行符的字符

        时间:2023-09-09

                <tbody id='7J98Y'></tbody>

              <small id='7J98Y'></small><noframes id='7J98Y'>

              <i id='7J98Y'><tr id='7J98Y'><dt id='7J98Y'><q id='7J98Y'><span id='7J98Y'><b id='7J98Y'><form id='7J98Y'><ins id='7J98Y'></ins><ul id='7J98Y'></ul><sub id='7J98Y'></sub></form><legend id='7J98Y'></legend><bdo id='7J98Y'><pre id='7J98Y'><center id='7J98Y'></center></pre></bdo></b><th id='7J98Y'></th></span></q></dt></tr></i><div id='7J98Y'><tfoot id='7J98Y'></tfoot><dl id='7J98Y'><fieldset id='7J98Y'></fieldset></dl></div>
              <tfoot id='7J98Y'></tfoot>
                • <bdo id='7J98Y'></bdo><ul id='7J98Y'></ul>
                • <legend id='7J98Y'><style id='7J98Y'><dir id='7J98Y'><q id='7J98Y'></q></dir></style></legend>
                • 本文介绍了如何替换“ "的所有实例在带有换行符的字符串中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我正在使用从网站上抓取的数据,并将我的机器人显示在单独的行中.有一个特定的字符串,其信息之间有 ",我想将它们转换为实际的换行符

                  I am using data scraped from a website and making my bot display in separate lines. There is a particular string whose information has " " in between and I want to convert those into actual line breaks

                  我尝试将 ' ' 替换为 '+ " " +' 但输出仍然相同

                  I have tried replacing the ' ' with '+ " " +' but the output is still the same

                  这是我遇到的问题的一个示例,而不是实际的机器人代码

                  This is an example of the issue I have, and not the actual bot code

                  import discord
                  from discord.ext.commands import Bot
                  from discord.ext import commands
                  import asyncio
                  
                  Client = discord.Client()
                  client = commands.Bot(command_prefix = "!")
                  
                  cardName = "Card Name"
                  rawCardText = "This is an ability
                  This is another ability"
                  cardText = rawCardText.replace('
                  ', '+ "
                  " +')
                  
                  fullText = cardName + "
                  " + cardText
                  await client.send_message (message.channel, fullText)
                  

                  我期待的是这样的:

                  卡名

                  这是一种能力

                  这是另一种能力

                  我得到的是:

                  卡名

                  这是一种能力 这是另一种能力

                  This is an ability This is another ability

                  推荐答案

                  Write " " as raw string:

                  Write " " as raw string:

                  cardText = rawCardText.replace(r'
                  ', '+ "
                  " +')
                  

                  这篇关于如何替换“ "的所有实例在带有换行符的字符串中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:Discord 机器人如何处理来自多个服务器的事件 下一篇:如何让我的 discord.py 重写机器人向消息作者发送

                  相关文章

                  最新文章

                  <i id='AGixG'><tr id='AGixG'><dt id='AGixG'><q id='AGixG'><span id='AGixG'><b id='AGixG'><form id='AGixG'><ins id='AGixG'></ins><ul id='AGixG'></ul><sub id='AGixG'></sub></form><legend id='AGixG'></legend><bdo id='AGixG'><pre id='AGixG'><center id='AGixG'></center></pre></bdo></b><th id='AGixG'></th></span></q></dt></tr></i><div id='AGixG'><tfoot id='AGixG'></tfoot><dl id='AGixG'><fieldset id='AGixG'></fieldset></dl></div>
                      <bdo id='AGixG'></bdo><ul id='AGixG'></ul>
                    <tfoot id='AGixG'></tfoot>
                  1. <legend id='AGixG'><style id='AGixG'><dir id='AGixG'><q id='AGixG'></q></dir></style></legend>

                    <small id='AGixG'></small><noframes id='AGixG'>