Extract between tags

hello everyone ,

can you help me to extract the word between this two tags :

image
the result must be : ADEQUATION

thanks.

Hi
This expression would help you on this
If the above string is in str_input variable then
str_output = Split(Split(str_input,โ€>โ€œ)(1).ToString,โ€<โ€)(0).ToString

Cheers @Bouraoui

thank you @Palaniyappan for your answer, but it is that I have a lot of div with several different class

Hi @Bouraoui,

1.You can extract the name until it is present in between > and <โ€ฆ

2.Try to use this in the assign activity by keeping the mentioned string in the str_input

str_output = Split(Split(str_input,โ€>โ€œ)(1).ToString,โ€<โ€)(0).ToString

Cheers.
Vashisht.

Thatโ€™s fine buddy
Were you facing any issue with expression on those cases
Cheers @Bouraoui