hello everyone ,
can you help me to extract the word between this two tags :
the result must be : ADEQUATION
thanks.
hello everyone ,
can you help me to extract the word between this two tags :
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