• <bdo id='yzdgb'></bdo><ul id='yzdgb'></ul>

        <tfoot id='yzdgb'></tfoot>

      1. <legend id='yzdgb'><style id='yzdgb'><dir id='yzdgb'><q id='yzdgb'></q></dir></style></legend>

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

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

        如何替换&QUOT;的所有实例 在带换行符的字符串中(&QOOT;)

        How to replace all instances of quot;quot; in a string with linebreaks(如何替换QUOT;的所有实例在带换行符的字符串中(QOOT;))
          <tbody id='3i9rb'></tbody>

          <bdo id='3i9rb'></bdo><ul id='3i9rb'></ul>

        • <small id='3i9rb'></small><noframes id='3i9rb'>

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

                  问题描述

                  我正在使用从网站上抓取的数据,并使我的机器人以单独的行显示。有一个特定的字符串,其信息具有" "介于两者之间,我想将这些转换为实际的换行符

                  我已尝试更换‘ ‘带’+" "+‘但输出仍然相同

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

                  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)
                  

                  我预计会是这样的:

                  卡名

                  这是一种能力

                  这是另一个能力

                  相反,我得到的是:

                  卡名

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

                  推荐答案

                  写入" "raw string

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

                  这篇关于如何替换&QUOT;的所有实例 在带换行符的字符串中(&QOOT;)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  GUI Freezes while downloading PyQt5 and Pytube(GUI在下载PyQt5和Pytube时冻结)
                  How to solve memory issues while multiprocessing using Pool.map()?(如何解决使用Pool.map()进行多处理时的内存问题?)
                  Python - How to use FastAPI and uvicorn.run without blocking the thread?(Python-如何使用FastAPI和uvicorn.run而不阻塞线程?)
                  How to increment a shared counter from multiple processes?(如何从多个进程递增共享计数器?)
                  Using pika, how to connect to rabbitmq running in docker, started with docker-compose with external network?(使用pika,如何连接运行在docker中的rabbitmq,从docker开始-与外部网络连接?)
                  How to use .rolling() on each row of a Pandas dataframe?(如何对 pandas 数据帧的每一行使用.roll()?)

                      <bdo id='RwoZW'></bdo><ul id='RwoZW'></ul>

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

                      <tfoot id='RwoZW'></tfoot>
                        <tbody id='RwoZW'></tbody>

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