比较两列,如果

时间:2019-10-17 06:13:39

标签: regex google-sheets google-sheets-formula array-formulas gs-conditional-formatting

A列:333 Ich wünschte, ich könnte 888 in meine Kindheit zurückkehren.

B列:Ich wünschte, ich könnte in meine Kindheit zurückkehren.

我在两栏中有这两个句子。现在,我想比较它们,但不考虑333和888。也无需创建第三列并替换333,因为如果将来我在B列中进行任何更改,则会立即看到它是否与A列不匹配。333实际上是标记,但它们不会在此处显示所以我用333代替了它们。

1 个答案:

答案 0 :(得分:0)

您可以这样做:

=TRIM(REGEXREPLACE(A1, "[0-9]+", ))=B1

0

和ArrayFormula将是:

=ARRAYFORMULA(TRIM(REGEXREPLACE(A1:A, "[0-9]+", ))=B1:B)

或类似,如果两列都匹配,则为绿色:

=(TRIM(REGEXREPLACE($A1, "[0-9]+", ))=$B1)*(A1<>"")

0