<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic RE: Expression Editor Escape Character for &amp;quot; in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Expression-Editor-Escape-Character-for-quot/m-p/82057#M33545</link>
    <description>&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/28588"&gt;@sastharpa&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt;To escape straight double quotes in a string literal, in the expression editor, you have to escape all the inside straight double quotes with another straight double quote. So your string would look like this:&lt;BR /&gt;
&lt;PRE class="language-markup"&gt;&lt;CODE&gt;"https://hostname:8443cription?wsdl,""user"",""pas"",l7ac3a04,247276af252c,101,""5"",""25"",""1"", manualtest, ""0001"",""1"",""2"",""1.200"", ""2021-11-16"""​&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If it still has an error after that, copy the string and paste it into a text editor and look for curly double quotes. Sometimes curly double quotes can be copied over from another application and sometimes the BP Expression Editor gets stuck in a mode where every straight double quote typed in comes out as a curly double quote. Curly double quotes are just treated as a character within an expression.&lt;/P&gt;
&lt;BR /&gt;​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Micheal Charron&lt;BR /&gt;Senior Manager&lt;BR /&gt;RBC&lt;BR /&gt;America/Toronto&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Thu, 03 Nov 2022 03:33:00 GMT</pubDate>
    <dc:creator>MichealCharron</dc:creator>
    <dc:date>2022-11-03T03:33:00Z</dc:date>
    <item>
      <title>Expression Editor Escape Character for "</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Expression-Editor-Escape-Character-for-quot/m-p/82051#M33539</link>
      <description>Any suggestion for the escape character for double quotes. I am trying to construct the below-mentioned line in the expression editor but not working.&lt;BR /&gt;&lt;BR /&gt;"https://hostname:8443cription?wsdl,"user","pas",l7ac3a04,247276af252c,101,"5","25","1", manualtest, "0001","1","2","1.200", "2021-11-16""&lt;BR /&gt;&lt;BR /&gt;Note" Entire line between ""&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;LAKSHMIGANESH Velayudham&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 02 Nov 2022 10:36:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Expression-Editor-Escape-Character-for-quot/m-p/82051#M33539</guid>
      <dc:creator>sastharpa</dc:creator>
      <dc:date>2022-11-02T10:36:00Z</dc:date>
    </item>
    <item>
      <title>RE: Expression Editor Escape Character for "</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Expression-Editor-Escape-Character-for-quot/m-p/82052#M33540</link>
      <description>Hi there. To escape double quotes, append Chr(34). For example:&amp;nbsp; "This expression will contain the character " &amp;amp; Chr(34) &amp;amp; " here." will be displayed as below:&lt;BR /&gt;&lt;BR /&gt;This expression will contain the character " here.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;John Hammond&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 02 Nov 2022 10:49:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Expression-Editor-Escape-Character-for-quot/m-p/82052#M33540</guid>
      <dc:creator>john.hammond</dc:creator>
      <dc:date>2022-11-02T10:49:00Z</dc:date>
    </item>
    <item>
      <title>RE: Expression Editor Escape Character for "</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Expression-Editor-Escape-Character-for-quot/m-p/82053#M33541</link>
      <description>Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/28588"&gt;@sastharpa&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt;In order to escape double quotes you need use the double quotes symbol 4 times, hence your expression will become:&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE class="language-markup"&gt;&lt;CODE&gt;"https://hostname:8443cription?wsdl," &amp;amp; """" &amp;amp; "user" &amp;amp; """" &amp;amp; "," &amp;amp; """" &amp;amp; "pas" &amp;amp; """" &amp;amp; ",l7ac3a04,247276af252c,101," &amp;amp; """" &amp;amp; "5" &amp;amp; """" &amp;amp; "," &amp;amp; """" &amp;amp; "25" &amp;amp; """" &amp;amp; "," &amp;amp; """" &amp;amp; "1" &amp;amp; """" &amp;amp; ", manualtest, " &amp;amp; """" &amp;amp; "0001" &amp;amp; """" &amp;amp; "," &amp;amp; """" &amp;amp; "1" &amp;amp; """" &amp;amp; "," &amp;amp; "2" &amp;amp; """" &amp;amp; "," &amp;amp; """" &amp;amp; "1.200" &amp;amp; """" &amp;amp; "," &amp;amp; """" &amp;amp; "2021-11-16" &amp;amp; """"​&lt;/CODE&gt;&lt;/PRE&gt;
​&lt;BR /&gt;&lt;BR /&gt;Try this out and let us know if it works!&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;----------------------------------&lt;BR /&gt;Hope it helps you out and if my solution resolves your query, then please mark it as the 'Best Answer' so that the others members in the community having similar problem statement can track the answer easily in future&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Devneet Mohanty&lt;BR /&gt;Intelligent Process Automation Consultant | Sr. Consultant - Automation Developer,&lt;BR /&gt;WonderBotz India Pvt. Ltd.&lt;BR /&gt;Blue Prism Community MVP | Blue Prism 7x Certified Professional&lt;BR /&gt;Website: &lt;A href="https://devneet.github.io/" target="test_blank"&gt;https://devneet.github.io/&lt;/A&gt;&lt;BR /&gt;Email: devneetmohanty07@gmail.com&lt;BR /&gt;&lt;BR /&gt;----------------------------------&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 02 Nov 2022 10:50:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Expression-Editor-Escape-Character-for-quot/m-p/82053#M33541</guid>
      <dc:creator>devneetmohanty07</dc:creator>
      <dc:date>2022-11-02T10:50:00Z</dc:date>
    </item>
    <item>
      <title>RE: Expression Editor Escape Character for "</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Expression-Editor-Escape-Character-for-quot/m-p/82054#M33542</link>
      <description>Hi @Devneet&amp;nbsp;Mohanty,&lt;BR /&gt;&amp;nbsp;Thanks for your swift response. However, still it shows syntax error.&lt;BR /&gt;I also found another way using &amp;amp;[comma]&amp;amp; and it worked in my case.&lt;BR /&gt;&lt;BR /&gt;Can you recommended some article to learn more about BluePrism Development techniques ?&lt;BR /&gt;&lt;BR /&gt;​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;LAKSHMIGANESH Velayudham&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 02 Nov 2022 12:22:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Expression-Editor-Escape-Character-for-quot/m-p/82054#M33542</guid>
      <dc:creator>sastharpa</dc:creator>
      <dc:date>2022-11-02T12:22:00Z</dc:date>
    </item>
    <item>
      <title>RE: Expression Editor Escape Character for "</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Expression-Editor-Escape-Character-for-quot/m-p/82055#M33543</link>
      <description>Hi L,&lt;BR /&gt;&lt;BR /&gt;Nice that you found the solution to be a Data Item containing the character to be escaped and just concatenating it in a calculation stage. This works every time and leaves you with nice readable code.&lt;BR /&gt;&lt;BR /&gt;On the learning BP, I can recommend the following:&lt;BR /&gt;
&lt;UL&gt;
&lt;LI&gt;BP University&lt;/LI&gt;
&lt;LI&gt;Youtube: Dave the RPA guy (slightly more advanced features)&lt;/LI&gt;
&lt;LI&gt;Youtube: Busy ping (for the more basic stuff)&lt;/LI&gt;
&lt;LI&gt;Experience is built by rolling up your sleeves and get started. Work with BP, find a realistic project and go for it.&lt;/LI&gt;
&lt;/UL&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Happy coding!&lt;BR /&gt;---------------&lt;BR /&gt;Paul&lt;BR /&gt;Sweden&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 02 Nov 2022 12:57:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Expression-Editor-Escape-Character-for-quot/m-p/82055#M33543</guid>
      <dc:creator>PvD_SE</dc:creator>
      <dc:date>2022-11-02T12:57:00Z</dc:date>
    </item>
    <item>
      <title>RE: Expression Editor Escape Character for "</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Expression-Editor-Escape-Character-for-quot/m-p/82056#M33544</link>
      <description>Thanks @&lt;A id="MainCopy_ctl11_ucMessageList_rptMessageList_ProfileImageDisplay_4_NameLink_4" biobubblekey="10299fc2-dcc1-4282-a020-cbc3430d8e3a" href="https://community.blueprism.com/network/profile?UserKey=10299fc2-dcc1-4282-a020-cbc3430d8e3a" target="_blank" rel="noopener"&gt;Paul JHM van Doorn&lt;/A&gt; for your response and suggestions.​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;LAKSHMIGANESH Velayudham&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 02 Nov 2022 13:15:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Expression-Editor-Escape-Character-for-quot/m-p/82056#M33544</guid>
      <dc:creator>sastharpa</dc:creator>
      <dc:date>2022-11-02T13:15:00Z</dc:date>
    </item>
    <item>
      <title>RE: Expression Editor Escape Character for "</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Expression-Editor-Escape-Character-for-quot/m-p/82057#M33545</link>
      <description>&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/28588"&gt;@sastharpa&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt;To escape straight double quotes in a string literal, in the expression editor, you have to escape all the inside straight double quotes with another straight double quote. So your string would look like this:&lt;BR /&gt;
&lt;PRE class="language-markup"&gt;&lt;CODE&gt;"https://hostname:8443cription?wsdl,""user"",""pas"",l7ac3a04,247276af252c,101,""5"",""25"",""1"", manualtest, ""0001"",""1"",""2"",""1.200"", ""2021-11-16"""​&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If it still has an error after that, copy the string and paste it into a text editor and look for curly double quotes. Sometimes curly double quotes can be copied over from another application and sometimes the BP Expression Editor gets stuck in a mode where every straight double quote typed in comes out as a curly double quote. Curly double quotes are just treated as a character within an expression.&lt;/P&gt;
&lt;BR /&gt;​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Micheal Charron&lt;BR /&gt;Senior Manager&lt;BR /&gt;RBC&lt;BR /&gt;America/Toronto&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 03 Nov 2022 03:33:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Expression-Editor-Escape-Character-for-quot/m-p/82057#M33545</guid>
      <dc:creator>MichealCharron</dc:creator>
      <dc:date>2022-11-03T03:33:00Z</dc:date>
    </item>
    <item>
      <title>RE: Expression Editor Escape Character for "</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Expression-Editor-Escape-Character-for-quot/m-p/82058#M33546</link>
      <description>Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/28588"&gt;@sastharpa&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Glad to know that you found a resolution, but the syntax I gave is not incorrect as you can see from the below screenshot:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28468.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28604iDBDB0F760C593AC3/image-size/large?v=v2&amp;amp;px=999" role="button" title="28468.png" alt="28468.png" /&gt;&lt;/span&gt;​&lt;BR /&gt;&lt;BR /&gt;Many times, I have seen that directly copy pasting expressions do cause some issues in some machines​ which I think text editor for the expression screen does not recognize properly. If you try to copy few sections at a time as well on each go, you should be able to get it work, I think. ​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;----------------------------------&lt;BR /&gt;Hope it helps you out and if my solution resolves your query, then please mark it as the 'Best Answer' so that the others members in the community having similar problem statement can track the answer easily in future&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Devneet Mohanty&lt;BR /&gt;Intelligent Process Automation Consultant | Sr. Consultant - Automation Developer,&lt;BR /&gt;WonderBotz India Pvt. Ltd.&lt;BR /&gt;Blue Prism Community MVP | Blue Prism 7x Certified Professional&lt;BR /&gt;Website: &lt;A href="https://devneet.github.io/" target="test_blank"&gt;https://devneet.github.io/&lt;/A&gt;&lt;BR /&gt;Email: devneetmohanty07@gmail.com&lt;BR /&gt;&lt;BR /&gt;----------------------------------&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 03 Nov 2022 08:25:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Expression-Editor-Escape-Character-for-quot/m-p/82058#M33546</guid>
      <dc:creator>devneetmohanty07</dc:creator>
      <dc:date>2022-11-03T08:25:00Z</dc:date>
    </item>
  </channel>
</rss>

