📌  相关文章
📜  谷歌表格删除第一个字符 - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:37.196000             🧑  作者: Mango

代码示例1
Using the RIGHT Formula
=RIGHT(A2, LEN(A2)-1)

Using the MID Formula
=MID(A2,2,LEN(A2)-1)

Using the REPLACE Formula
=REPLACE(A2,1,1,"")