在 Excel 中计算字符串中的项目数
我有一个下面提到的字符串,我需要在 2 个单独的列中返回结果
第 1 列:计算所有用分号分隔的位置。对于下面的示例,总共有 15 个名称,它们是用分号连接的。
第 2 列:在此之后,我需要计算有多少个名称以 A、B 和 B 开头。 C 还有多少没有。
A1604A;A3703E;A3703H;C2203H;F1001B;F1001C;F1001D;F1001E;F1001F;F1001G;F1001H;F1001J;F1001K;F1001L;F1001M
I have a string mentioned below and I need to return the results in 2 separate columns
Column 1: Count all the locations separating by Semicolon. for the below example, there are total of 15 names which are joined with semicolon
Column 2: After this I need to count how many names START with A, B & C and how many do not.
A1604A;A3703E;A3703H;C2203H;F1001B;F1001C;F1001D;F1001E;F1001F;F1001G;F1001H;F1001J;F1001K;F1001L;F1001M
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
迭代分割数组,增加 A、B、C、其他的计数器数组;
Iterate the split array incrementing a counter array for A,B,C,Other;