易表在线答疑技术与交流用户社区 → 字母数字字符串如何分拆


  共有6426人关注过本帖树形打印复制链接

主题:字母数字字符串如何分拆

帅哥哟,离线,有人找我吗?
Egei
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:论坛游侠 帖子:238 积分:882 威望:0 精华:0 注册:2012/4/11 10:40:00
字母数字字符串如何分拆  发帖心情 Post By:2012/7/21 10:19:00 [只看该作者]

一个字符串数字字母数字连接而成(数字和字母的长度都是任意的),比如: 234PSDF34435  要得到 34435 现在要获取最后的数字,该如何拆解出来

 回到顶部
帅哥哟,离线,有人找我吗?
wjq1072
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:16190 积分:125850 威望:1 精华:0 注册:2006/8/12 12:29:00
  发帖心情 Post By:2012/7/21 12:35:00 [只看该作者]

最好发示例文件,增加一下典型数据!

 回到顶部
帅哥哟,离线,有人找我吗?
wjq1072
  3楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:16190 积分:125850 威望:1 精华:0 注册:2006/8/12 12:29:00
  发帖心情 Post By:2012/7/21 19:45:00 [只看该作者]

如果字符串只有数字和字母的话,分离处最后的数字可以使用通用刷新公式:

Split(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Lower([第一列]),"a","|"),"b","|"),"c","|"),"d","|"),"e","|"),"f","|"),"g","|"),"i","|"),"j","|"),"k","|"),"l","|"),"m","|"),"n","|"),"o","|"),"p","|"),"q","|"),"r","|"),"s","|"),"t","|"),"u","|"),"v","|"),"w","|"),"x","|"),"y","|"),"z","|"),"h","|"),"|",Len(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Lower([第一列]),"a","|"),"b","|"),"c","|"),"d","|"),"e","|"),"f","|"),"g","|"),"i","|"),"j","|"),"k","|"),"l","|"),"m","|"),"n","|"),"o","|"),"p","|"),"q","|"),"r","|"),"s","|"),"t","|"),"u","|"),"v","|"),"w","|"),"x","|"),"y","|"),"z","|"),"h","|"))-Len(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Substitute(Lower([第一列]),"a","|"),"b","|"),"c","|"),"d","|"),"e","|"),"f","|"),"g","|"),"i","|"),"j","|"),"k","|"),"l","|"),"m","|"),"n","|"),"o","|"),"p","|"),"q","|"),"r","|"),"s","|"),"t","|"),"u","|"),"v","|"),"w","|"),"x","|"),"y","|"),"z","|"),"h","|"),"|",""))+1)


 回到顶部