码迷,mamicode.com
首页 > 其他好文 > 详细

Lua 中string.gsub(sourceString, pattern, replacementString) 返回值有两个

时间:2014-09-24 19:53:37      阅读:309      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   div   sp   2014   on   c   

这阵子在学习lua,今天看到string操作,书中描述string.gsub(sourceString, pattern, replacementString)返回一个字符串,但是我在实际操作中却发现,这个函数其实返回的是两部分内容,一部分是替换后的字符串,一部分是替换长度。

myString = "my name is lucy, my phone numbre is 010-88993366."
print(string.gsub(myString, "%d", "*"))

看一下输出:

bubuko.com,布布扣

这是直接打印出来的,为了更加直观一点,我把返回值都用变量缓存起来,在打印出来看下。

myString = "my name is lucy, my phone numbre is 010-88993366."
newstring, length = string.gsub(myString, "%d", "*")
print(newstring)
print(length)

看下输出:

bubuko.com,布布扣

确实是两个返回值。

Lua 中string.gsub(sourceString, pattern, replacementString) 返回值有两个

标签:style   blog   http   color   div   sp   2014   on   c   

原文地址:http://www.cnblogs.com/leisc/p/3991030.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!