Best answer

Split Test Separator

  • 27 July 2020
  • 1 reply
  • 151 views

Userlevel 1

This is the string that’s coming over. I want to extract Name so I can make it the start of an Upload file to GDrive

I used this: [:Name: :]
and I got this output:

But I can’t get to the Name field. All I see is the Body Plain string again. 

 

icon

Best answer by andywingrave 27 July 2020, 21:31

View original

This post has been closed for comments. Please create a new post if you need help or have a question about this topic.

1 reply

Userlevel 7
Badge +9

Hello! if this is all you’re trying to do (i.e. get the name - I’d recommend that you use the Extract pattern step instead, and get all of the text between Name and Email. I vow to never learn regex, because I hate it, and luckily there are tonnes of websites that validate this hate and let you cheat… 

So I cheated to get you this answer. 

Source: https://stackoverflow.com/questions/6109882/regex-match-all-characters-between-two-strings

(?<=Name)(.*)(?=Email)