I'm trying to match the company name in this string delimited with tabs.
Below table does not have tabs when you copy it, but I have replaced tabs with two spaces, which I assume will work fine for testing.
1025164  HERBEX IBERIA, S.L.U.  KY01  4600292091    
1016379  DRISCOLL´S OF EUROPE B.V.  KY01  4600322589    
1008809  LANDGARD NORD OBST & GEMÜSE GM  KY01  4600347315   
1008835  C.A.S.I. : COOPERATIVA PROVINC  KY01  4600348112   
1019258  SYDGRÖNT EKONOMISK FÖRENING  KY02  4600343422  
(The second column of the above, between 7 digit number and KY0 above)
In real life the columns are not always in the same order since it's a user preference.
I just took a few examples but names could also include /éèáà()´, pretty much anything (sadly).
I found another question here Concrete Javascript Regex for Accented Characters (Diacritics)
When I use the regex patterns in that thread, example: "\t([A-zÀ-ÿ0-9\s\.\,\_\-\'\&]+)\t" (I know some characters are still missing) to match between two tabs it becomes greedy and matches the whole line.
Is there any pattern that could match any character in a company name between tabs (or two spaces as the example above)?
 
     
    