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

lua正则表达式

时间:2015-04-07 17:44:59      阅读:422      评论:0      收藏:0      [点我收藏+]

标签:正则表达式   lua   

lua中的正则表达式,规则如图:

技术分享



常用示例,代码如下:

-- 去掉首尾所有空格
function trim(s)
  return (string.gsub(s, "^%s*(.-)%s*$", "%1"))
end
local s = " space "
local txt = trim(s)
print(string.len(s), string.len(txt))
输出:
7 5

-- 查找固定开头和结尾的字符串
local s = "<url>http://xulidong.sinaapp.com/</url>"
local sTag = '<url>'
local eTag = '</url>'
local _ , _ , txt = string.find(s,sTag.."(.-)"..eTag)
输出:
<url>http://xulidong.sinaapp.com/</url>	1	39	http://xulidong.sinaapp.com/

原文出自:http://blog.csdn.net/xufeng0991/article/details/44921801

lua正则表达式

标签:正则表达式   lua   

原文地址:http://blog.csdn.net/xufeng0991/article/details/44921801

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