mytzq

因开发须要写了一段exl函数,一下是分解函数

=CONCATENATE("franCategory.set",CONCATENATE(PROPER(LEFT(B1,1)),MID(B1,2,100)),"(","admitCategory.get",CONCATENATE(PROPER(LEFT(B1,1)),MID(B1,2,100)),"()",");")

CONCATENATE(str1,str2,...) //字符串拼接

LEFT(str,1)//取左边几位

PROPER(str)//首字母大写其余都小写

MID(str,2,100)//中间截取

效果:

b1:twoTypeName

结果:franCategory.setTwoTypeName(admitCategory.getTwoTypeName());

posted on 2017-07-19 15:54  继续潜水  阅读(141)  评论(0编辑  收藏  举报

分类:

技术点:

相关文章:

  • 2022-01-04
  • 2022-02-12
  • 2021-11-15
  • 2022-12-23
  • 2022-02-04
  • 2021-11-17
  • 2022-12-23
猜你喜欢
  • 2021-09-08
  • 2022-02-07
  • 2021-12-19
  • 2021-12-19
  • 2021-08-05
  • 2021-11-12
  • 2021-11-29
相关资源
相似解决方案