我在excel中有很多数据,在每一行中我都有这样的值:
"Some text 2017 more text"
"Some other text 2016 some more text"
我想要像
这样的数据"Some text 2017 | more text"
" Some other text 2016 | some more text"
现在我希望在年后拆分此文本,每行都有年份名称,但不在同一位置,因此我无法使用拆分工具。有帮助吗?感谢。
答案 0 :(得分:1)
假设只有2010年十年(2010-2019 bdi),请尝试:
=REPLACE(A1,FIND("201",A1)+4,1,"|")
然后复制,选择特殊粘贴,将值放在文本到列之前的顶部,并将|
作为分隔符。