Forum Discussion

joansinho's avatar
joansinho
Advocate I
7 years ago

HTML Cleaning

Hi all,
I am cleaning HTML text. So far I have been able to clean most of it. However, I am not able to clean this string "target="_blank"/a." I get some rows that look like: "target="_blank"/ahttp://www.youtube.com" I would like to remove this part "target="_blank"/a"and keep "http://www.youtube.com".
The code I have so far is this and it works well:

 

= (HTML as any) =>

let

    Source = if HTML = null then

        ""

    else

        Text.From(HTML),

    SplitAny = Text.SplitAny(Source,"<>"),

    ListAlternate = List.Alternate(SplitAny,1,1,1),

    ListSelect = List.Select(ListAlternate, each _<>""),

    TextCombine = Text.Combine(ListSelect, "")

in

    TextCombine



Thank you in advance

2 Replies