I am struggling with the following text:
c(\Study:\", \"Job:\", \"Branch:\", \"Position:\", \"Naming:\", NA, NA, \"Banker\", \"VP of Sales\", \"\", NA, NA, NA, NA, NA)"
I would like to get from a regex, the VP of Sales
. Instead of the VP of Sales
other things can be exactly at this place.
I tried the following, \\\"(.*?)\"
which captures all the text around, but not the VP of Sales
.
Any suggestions? I appreciate your reply!