Hello, I am trying to pull the first name and course from one website and put into an email or specific messaging platform. The information is presented in a table format so it doesn't seem to be able to pick up the specific name and course of the student it just says "student first name" and "course" when I type in the snippet. Any ideas? Thank you!
Hi @Courtney_Smith - please email support@blaze.today and let's jump on a quick call to figure this out.
I had this trouble once, and the team helped me through it using regular expressions.
Below, I have a part of my snippet that pulls from a website but stops after a space - seen as \w+
{data=catch(catch({=extractregex({site: }, "(\w+)")}, {=extractregex({site: text; selector=#incident\.u_store_user_name}, "(\w+)")}), "")}{if: data=""}{else} {=data}{endif}
1 Like