• Rohit Thakur 19
  • NEWBIE
  • 10 Points
  • Member since 2020

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 2
    Replies
Hi,
Stuck in the below String How to remove HTML tags between {{ & }} space CSS etc

Currunt String
<span>Opportunity description: {{Opportunity_d</span><span style="color:#000000;font-weight:700;text-decoration:none;vertical-align:baseline;font-size:11pt;font-family:&quot;Arial&quot;;font-style:normal">escription &nbsp; &nbsp; &nbsp; }}</span></p><p style="margin-left:15pt;font-style:normal">Opportunity stagename: {{Opportunity_stagename &nbsp; &nbsp;}}</span>

Need Output String from Currunt String
<span>Opportunity description: {{Opportunity_description}}</span></p><p style="margin-left:15pt;font-style:normal">Opportunity stagename: {{Opportunity_stagename}}</span>
Hi,
How remove HTML tags between {{ & }} space CSS etc.

Currunt String 
font-style:normal">Opportunity description: {{Opportunity_description &nbsp; &nbsp; &nbsp; &nbsp; }}</span></p>

How to get below String Output from currunt String
font-style:normal">Opportunity description: {{Opportunity_description}}</span></p>
Is there any way to get owner.createdbyid on lead in SOQL

I just need lead Owner Created by id in lead through SOQL. compare both the below SOQL. 

Select id,owner.createdbyid, CreatedById, createdby.name from Lead. 
Error: No such column 'createdbyid' on entity 'Name'. 

Select id,owner.createdbyid, CreatedById, createdby.name from Account. 
Working Fine

Thanks 
Rohit Thakur

 
Select id, owner.createdbyid, Name from Lead
Error :No such column 'createdbyid' on entity 'Name'. 

 
Hi,
How remove HTML tags between {{ & }} space CSS etc.

Currunt String 
font-style:normal">Opportunity description: {{Opportunity_description &nbsp; &nbsp; &nbsp; &nbsp; }}</span></p>

How to get below String Output from currunt String
font-style:normal">Opportunity description: {{Opportunity_description}}</span></p>
Select id, owner.createdbyid, Name from Lead
Error :No such column 'createdbyid' on entity 'Name'.