Inquiries about extracting screen scraping strings

test2.xaml (12.5 KB)

  1. Currently, the regular expression is in e-mail, but for certain sites, if there is more than one @, the message box will appear several times.

  2. How do I collect only the first collected @ within a site?

Hi @kanmz

I am not able to open file attached with your post, could you explain your query in the post ?

nice to meet you, @NIVED_NAMBIAR NIVED_NAMBIAR

This is the structure.

1 Like

Hi @kanmz

If you want to get first collected @, try dt3.ElementAt(0).ToString

1 Like

@NIVED_NAMBIAR
I checked the first collection well. Thank you

if,

a@a.a
werlwerlewrldsfsd
b@b.b
eewrtwrewre
c@c.c

Is there a way to extract only the last collected c@c.c from here?

I can’t think of a way.

@kanmz

Try

dt3.ElementAt(dt3.Count-1).ToString

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.