Extract between tags

hello everyone ,

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

image
the result must be : ADEQUATION

thanks.

1 Like

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

1 Like

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.

1 Like

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

2 Likes