Skip to main content
Solved

Remove spans from a string

  • October 10, 2024
  • 2 replies
  • 31 views

Forum|alt.badge.img+4

As part of a bot, I am copying a string to clipboard that reads something like this:

“(…) mechanisms for the application of proceeds, set-off, payment, calculation, and notification. <span data-id="1d8743a3s628d9hg3248f2673">3</span> This document is (…)”

I want to remove all spans (open and close) and everything between them so the text reads:

“(…) mechanisms for the application of proceeds, set-off, payment, calculation, and notification. This document is (…)”

I want to do this for all spans in the string so it cleans all of it out. I tried using a String - Replace action to replace everything between “<span>” and <”/span” with blank text but it didn’t work. I tried using a regex function to allow a wildcard at the end of “<span>”.

When I paste into Word it seems to do some formatting to remove these spans, but the raw string I get from the necessary Copy to Clipboard has the spans in them.

Best answer by Bot Dev

Use String: Replace 

Replace string matching following regex with empty string:

 

<span[^>]*>.*?<\/span>

 

View original
Did this topic help answer your question?

2 replies

Aaron.Gleason
Automation Anywhere Team
Forum|alt.badge.img+10
  • Automation Anywhere Team
  • 544 replies
  • October 10, 2024

Not particularly elegant, but it works:

 


Forum|alt.badge.img+8
  • Navigator | Tier 3
  • 59 replies
  • Answer
  • October 10, 2024

Use String: Replace 

Replace string matching following regex with empty string:

 

<span[^>]*>.*?<\/span>

 


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings