Excel 用什么函数可以判断一个字符串中是否包含某些字符

Excel 用什么函数可以判断一个字符串中是否包含某些字符

閱讀本文約花費: 2 (分鐘)

判断方法如下:

1,判断字符串中是否包含大写字母A,可用公式=IF(ISNUMBER(FIND(“A”,A1)),”有”,”无”)。

2,下拉公式会发现,含有小写字母a的结果是无,该公式里的FIND函数提取的是指定的字符区分大小写。

3,如果要判断是不是包含字母A且不区分大小写,可用SEARCH函数代替FIND函数,公式=IF(ISNUMBER(SEARCH(“A”,A1)),”有”,”无”)。

4,要想判断单元格中是否包含多个指定字符中的某一个,如判断单元格中是否包含“大”、“小”、“20”这三个字符中的一个,可用公式=IF(OR(ISNUMBER(FIND({“大”;”小”;”20″},A1))),”有”,”无”)。

5,下拉公式会发现,只要包含这三个字符中的任意一个,结果都是有。

6,而要判断是否同时包含这三个字符,只要把公式中的OR改成AND即可,公式=IF(AND(ISNUMBER(FIND({“大”;”小”;”20″},A1))),”有”,”无”)。

7,要判断包含这三个字符中的几个,可用公式=COUNT(FIND({“大”;”小”;”20″},A1))。

8,要判断单元格中是否包含字母A,且不论在字符串的什么位置,也不区分大小写,可用公式=IF(COUNTIF(A1,”*A*”),”有”,”无”)。

9,如果要判断四个字符中是否以字母A开头,公式=IF(COUNTIF(A1,”A???”),”有”,”无”)或=IF(COUNTIF(A1,”A*”),”有”,”无”)。

Rate this post
No tags for this post.

One thought on “Excel 用什么函数可以判断一个字符串中是否包含某些字符

  1. Long time reader, first time commenter — so, thought I’d drop a
    comment.. — and at the same time ask for a favor.

    Your wordpress site is very simplistic – hope
    you don’t mind me asking what theme you’re
    using? (and don’t mind if I steal it? :P)

    I just launched my small businesses site –also built in wordpress like
    yours– but the theme slows (!) the site down quite a bit.

    In case you have a minute, you can find it by searching for “royal cbd” on Google (would appreciate any
    feedback)

    Keep up the good work– and take care of yourself during the
    coronavirus scare!

    ~Justin

Comments are closed.

Comments are closed.