Lua字符串替换
我该怎么做?
我得到了这个:
name = "^aH^ai" string.gsub(name, "^a", "")
应该返回“Hi”,但它将插入符号字符作为模式字符
解决这个问题的方法是什么? (必须在gsub中完成)
How would i do this?
I got this:
name = "^aH^ai" string.gsub(name, "^a", "")
which should return "Hi", but it grabs the caret character as a pattern character
What would be a work around for this? (must be done in gsub)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试:
另请参阅:http://lua-users.org/wiki/StringLibraryTutorial
Try:
See also: http://lua-users.org/wiki/StringLibraryTutorial