✔ 最佳答案
Assume that 11024c50030 is stored in cell A1:
then you can put this formula in cell B1:
=LEFT(A1,5)&" "&MID(A1,6,1)&" "&RIGHT(A1,5)
you will see
11024 c 50030
in cell B1
If you want those values to be stored in 3 different cells, you can just put
11024 =LEFT(A1,5)
c =MID(A1,6,1)
50030 =RIGHT(A1,5)
I hope that helps.