使用 openoffice 提取单元格中的最后两个单词
我需要一个公式来使用 openoffice 提取单元格中的最后两个单词。例如,一个单元格包含以下单词:“享受你一天剩下的时间”我想使用公式提取“你的一天”。我知道如何提取最后一个词:
=RIGHT(A1;LEN(A1)-FIND("*";SUBSTITUTE(A1;" ";"*";LEN(A1)-LEN(SUBSTITUTE(A1;" ";"")))))
结果是“day”。但我需要最后两个词的公式。
I need a formula to extract the last two words in a cell using openoffice. For example a cell contains the words: "enjoy the rest of your day" I would like to extract "your day" using a formula. I know how to extract the last word:
=RIGHT(A1;LEN(A1)-FIND("*";SUBSTITUTE(A1;" ";"*";LEN(A1)-LEN(SUBSTITUTE(A1;" ";"")))))
which results in "day". But i need a formula for the last two words.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SEARCH
支持正则表达式,因此使用当我如下使用分号时,Calc 会默默地替换逗号,但 OP 报告以这种方式输入成功:
SEARCH
supports regular expressions, so useWhen I use semicolons as below, Calc silently substitutes commas, but the OP reports success entering it this way: