如何从数字对象中提取数字

时间:2019-02-13 15:47:10

标签: r

例如,对于数字 fun someServiceFunction(){ offerPage.panel //This is always null, even though a matching panel is in the database offerPagePanelRepository.findByPage(offerPage) //this returns the correct panel } ,我将提取4,3和1。我想我可以将它们转换为字符,将它们切成薄片,然后将第一个图像生动化。有什么更好的办法吗?

1 个答案:

答案 0 :(得分:3)

尝试:

s=c(412,34523,123412)
 substring(s,1,1)
[1] "4" "3" "1"