What is your goal?
I’m trying to get the first name of someone in a google calendar event title through a set multiple variables module. the calendar events are formatted like this:
“First Name Last Name- Private Facilitation”
What is the problem?
I’m unable to isolate the first name by itself.
What have you tried so far?
I tried using multiple kinds of code to get the name using chatgpt. I can pull the full name from the event title with this code:
trim(substring(1.summary; 0; indexOf(1.summary; -)))
When I try replacing the ‘-’ with a blank space(" ") the variable comes up empty when I run the code.
