请大哥大姐详细给我讲下 。谢谢了

解决方案 »

  1.   

    ([^=\t]+)=([^\t]*)Match the regular expression below and capture its match into backreference number 1 «([^=\t]+)»
       Match a single character NOT present in the list below «[^=\t]+»
          Between one and unlimited times, as many times as possible, giving back as needed (greedy) «+»
          The character “=” «=»
          A tab character «\t»
    Match the character “=” literally «=»
    Match the regular expression below and capture its match into backreference number 2 «([^\t]*)»
       Match any character that is not a “A tab character” «[^\t]*»
          Between zero and unlimited times, as many times as possible, giving back as needed (greedy) «*»
      

  2.   

    应该是正则表达式
    非=或tab符号的任意字符一次或多次,然后一个=号,然后后边是非tab符号的任意字符可有可无,所组成的字符串