Split string

Hey!

Thanks a bunch!

What if i need to get the text “Normal” in this data table received in a email?

table

There are many data tables in the email, but I need to filter just “Type” and then get the word “Normal”.
Thanks a lot!

Edit:
In the body email there is a data table (2x7 for instance), and the word i want to get is “Normal”, located under “Type”.


@ClaytonM

Thank you so much!

Hi @pal1910,
Use this code to get first value
strValue.ToString().split(" "c)(0)

Refer this post

Regards,
Arivu :slight_smile:

Thanks a bunch!

What if i need to get the text “Normal” in this data table received in a email?

table

There are many data tables in the email, but I need to filter just “Type” and then get the word “Normal”.
Thanks a lot!

Hi!

Please check this one before tagging someone:

1 Like

scrape the table into a datatable, then use for each item (datarow), and use something like If “*Normal *” Like datarow(“Type”).toString …?