码迷,mamicode.com
首页 >  
搜索关键字:regex    ( 2502个结果
获取html中所有img
NSError *error = NULL; NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"()+?" opt...
分类:Web程序   时间:2014-08-19 10:32:53    阅读次数:217
Sublime 脚本 配置 (lua 和 JavaScript篇)
{ "cmd" :["C:/Lua/Lua.exe","$file"], "file_regex" :"^(?:lua:)?[\t](...*?):([0-9]*):?([0-9]*)", "selector" :"source.lua"}{ "cmd" :["node","$file"], "fi...
分类:编程语言   时间:2014-08-18 20:27:52    阅读次数:186
C#验证邮件
public static bool IsEmail(string email){ String strExp = @"\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*"; Regex r = new Regex(strExp); Match ...
分类:其他好文   时间:2014-08-16 11:03:20    阅读次数:190
Java面试准备之正则表达式
在常用的Java程序设计中,正则表达式常常跟字符串处理、IO流的部分结合起来,在《Java编程思想》中甚至将正则表达式的讲解放到了IO流这一章的内容里,可见正则表达式跟流的关系之密切。Java设计者也将正则表达式需要用到的包:java.util.regex放在了常用工具里。 在Java中, 正则.....
分类:编程语言   时间:2014-08-16 11:01:20    阅读次数:321
java邮箱正则验证
import java.util.*;import java.util.regex.Matcher;import java.util.regex.Pattern;public class test{ public static void main(String args[]){ ...
分类:编程语言   时间:2014-08-14 23:35:56    阅读次数:262
C#正则表达式获取组名,按照组名输出匹配内容
最近写了个正则表达式匹配的工具,可以按照组名输出匹配内容,还是挺方便的,代码留存一下,以后用的话,直接copy了。 Regex regex = new Regex(this.textBoxRegex.Text); Match result = regex....
分类:其他好文   时间:2014-08-14 23:21:16    阅读次数:266
java 正则表达式 验证字符串 只包含汉字英文数字
String content = “testContent”; String regex="^[a-zA-Z0-9\u4E00-\u9FA5]+$"; Pattern pattern = Pattern.compile(regex); Matcher ma...
分类:编程语言   时间:2014-08-14 19:41:29    阅读次数:282
.net 判断日期格式yyyy-MM-dd hh:MM:ss的正则表达式
加上引用: using System.Text.RegularExpressions; /// /// 检查字符串是否是日期格式 /// /// 2011-5-8 8:08:05 /// public static string check(string s) { if (Regex.I...
分类:Web程序   时间:2014-08-14 19:26:19    阅读次数:369
对SQL语句进行过滤的函数
/// /// 过滤SQL非法字符串 /// /// /// public static string Filter(string value) { if (string.IsNullOrEmpty(value)) return string.Empty; value = Regex.Rep...
分类:数据库   时间:2014-08-14 00:56:27    阅读次数:278
匹配html img 标签的正则表达式 java
public static void main(String[] args) { String regex = ""; Pattern pattern = Pattern.compile(regex, Pattern.MULTILINE); String content = ""; Matc...
分类:编程语言   时间:2014-08-13 18:25:47    阅读次数:227
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!