我有一列文字值,我想删除前面的8个字符和最后4个字符,即12345678john1234'会变成“约翰”。我知道如何分别使用左右功能,但似乎无法让它们协同工作。在这种情况下,mid函数不起作用。这可能吗?感谢
答案 0 :(得分:1)
问题解决了:
= MID(a1,9,LEN(A1)-12)
阐释:
MID: get the middle string
=MID(text,start_nums,numchars)
start_nums = 9 to start from the character j
numchars = len(text)-12 = 16 - 12 = 4
然后你会得到约翰的结果
答案 1 :(得分:0)
亲爱的使用此公式,您可以得到答案
= LEFT(RIGHT(A1,8),4)