使用
\b[A-Z]\w+(?:\.com?)?(?:[ -]+(?:&[ -]+)?[A-Z]\w+(?:\.com?)?){0,2}[,\s]+(?i:ltd|llc|inc|plc|co(?:rp)?|group|holding|gmbh)\b
见regex proof。
解释
--------------------------------------------------------------------------------
\b the boundary between a word char (\w) and
something that is not a word char
--------------------------------------------------------------------------------
[A-Z] any character of: 'A' to 'Z'
--------------------------------------------------------------------------------
\w+ word characters (a-z, A-Z, 0-9, _) (1 or
more times (matching the most amount
possible))
--------------------------------------------------------------------------------
(?: group, but do not capture (optional
(matching the most amount possible)):
--------------------------------------------------------------------------------
\. '.'
--------------------------------------------------------------------------------
co 'co'
--------------------------------------------------------------------------------
m? 'm' (optional (matching the most amount
possible))
--------------------------------------------------------------------------------
)? end of grouping
--------------------------------------------------------------------------------
(?: group, but do not capture (between 0 and 2
times (matching the most amount
possible)):
--------------------------------------------------------------------------------
[ -]+ any character of: ' ', '-' (1 or more
times (matching the most amount
possible))
--------------------------------------------------------------------------------
(?: group, but do not capture (optional
(matching the most amount possible)):
--------------------------------------------------------------------------------
& '&'
--------------------------------------------------------------------------------
[ -]+ any character of: ' ', '-' (1 or more
times (matching the most amount
possible))
--------------------------------------------------------------------------------
)? end of grouping
--------------------------------------------------------------------------------
[A-Z] any character of: 'A' to 'Z'
--------------------------------------------------------------------------------
\w+ word characters (a-z, A-Z, 0-9, _) (1 or
more times (matching the most amount
possible))
--------------------------------------------------------------------------------
(?: group, but do not capture (optional
(matching the most amount possible)):
--------------------------------------------------------------------------------
\. '.'
--------------------------------------------------------------------------------
co 'co'
--------------------------------------------------------------------------------
m? 'm' (optional (matching the most
amount possible))
--------------------------------------------------------------------------------
)? end of grouping
--------------------------------------------------------------------------------
){0,2} end of grouping
--------------------------------------------------------------------------------
[,\s]+ any character of: ',', whitespace (\n, \r,
\t, \f, and " ") (1 or more times
(matching the most amount possible))
--------------------------------------------------------------------------------
(?i: group, but do not capture (case-
insensitive) (with ^ and $ matching
normally) (with . not matching \n)
(matching whitespace and # normally):
--------------------------------------------------------------------------------
ltd 'ltd'
--------------------------------------------------------------------------------
| OR
--------------------------------------------------------------------------------
llc 'llc'
--------------------------------------------------------------------------------
| OR
--------------------------------------------------------------------------------
inc 'inc'
--------------------------------------------------------------------------------
| OR
--------------------------------------------------------------------------------
plc 'plc'
--------------------------------------------------------------------------------
| OR
--------------------------------------------------------------------------------
co 'co'
--------------------------------------------------------------------------------
(?: group, but do not capture (optional
(matching the most amount possible)):
--------------------------------------------------------------------------------
rp 'rp'
--------------------------------------------------------------------------------
)? end of grouping
--------------------------------------------------------------------------------
| OR
--------------------------------------------------------------------------------
group 'group'
--------------------------------------------------------------------------------
| OR
--------------------------------------------------------------------------------
holding 'holding'
--------------------------------------------------------------------------------
| OR
--------------------------------------------------------------------------------
gmbh 'gmbh'
--------------------------------------------------------------------------------
) end of grouping
--------------------------------------------------------------------------------
\b the boundary between a word char (\w) and
something that is not a word char
Python code:
import re
regex = r"\b[A-Z]\w+(?:\.com?)?(?:[ -]+(?:&[ -]+)?[A-Z]\w+(?:\.com?)?){0,2}[,\s]+(?i:ltd|llc|inc|plc|co(?:rp)?|group|holding|gmbh)\b"
test_str = ("I work in Amazon.com Inc.\n"
"Company named Swiss Medic Holding invested in vaccine\n"
"what do you think about Abercrombie & Fitch Co. ?\n"
"do you work in Delta Group?\n"
"I have worked in CocaCola Gmbh")
print(re.findall(regex, test_str))
结果:['Amazon.com Inc', 'Swiss Medic Holding', 'Abercrombie & Fitch Co', 'Delta Group', 'CocaCola Gmbh']