email parsing automation

Email Parser

Extract data from emails and automate your workflow

The forum is now read only. Please, go to the the main Email Parser website if you need help.
Need help configuring the program? Have any questions regarding its use?
Hi,
I need a regex to catch the second word of a sentence.
I'm pretty much a newbie, I'm learning regexes step by step...
Any help welcome !
Thanks a lot !
Try this to capture the second word of your string.
Code: Select all/(?:\S+\s+){1}(\S+)/
Should return "quick" for the string "The quick brown fox."
Here there is another way:
Attachments
capture_second_word.jpg
capture_second_word.jpg (94.27KiB)Viewed 733 times