例如 (?<item1>[^<]+) 中排除 < ,如果我要排除的是一个词呢,两个字符以上,该怎么写?如要排除 div ,(?<item1>[^div]+) 应该是不对的吧?我现在的方法是把字符串中的div 替换成一个字如 @,然后写成  (?<item1>[^@]+)