Ignoring html tags like <b></b> while scraping

Hello Everyone,

I am trying to scrape the data from the following line:

Inventors:
Murphy; Bruce W. (Pyrmont, AU), Iversen; Grim H. (Trondheim, NO)

Now as a normal scraping, I will do as follows:

Inventors:
~@INVENTORS@~

but it includes HTML tags too in results which I want to ignore.

What I want to get the results is scrape results without " "

i.e Murphy; Bruce W. (Pyrmont, AU), Iversen; Grim H.(Trondheim, NO)

Can any one help me with this?

Thanks in advance.

If you're writing to a CSV,

If you're writing to a CSV, you just need to strip out the HTML before you write it.

inv = dataRecord.get("INVESTORS");
inv = inv.replaceAll("<[^<>]*>", "");

Can you attach simple example if possible?

Sir,Thank you so much for the reply.

Is it possible that you can attach one file to explain me? Actually still I am getting tags in output.

Thank you.

Have you looked at the write

Have you looked at the write to file script in the tip, tricks, and samples section?

Thank you so much

Thank you so much for your help. I found the solution to it.