Skip to main content

I have a numbered list in text, with the format

1# blah blah blah

2# yo yo yo

3# do wa diddy

and I need to get rid of the 1# 2# 3# etc. This list could be really long. 

Can anyone thing of an efficient way that doesnt loop a million tasks to replace everything with some sort of wildcard? Iike find all (*#) and replace with a blank?

Thanks!

Hi @AppGuyAaron 

Try a Code step to do the regex replacing.

Use the replace() method: https://www.w3schools.com/jsref/jsref_replace.asp

 

 

RESULTS