NSError *error = NULL; NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"()+?" opt...
分类:
Web程序 时间:
2014-08-19 10:32:53
阅读次数:
217
{ "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
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程序设计中,正则表达式常常跟字符串处理、IO流的部分结合起来,在《Java编程思想》中甚至将正则表达式的讲解放到了IO流这一章的内容里,可见正则表达式跟流的关系之密切。Java设计者也将正则表达式需要用到的包:java.util.regex放在了常用工具里。 在Java中, 正则.....
分类:
编程语言 时间:
2014-08-16 11:01:20
阅读次数:
321
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
最近写了个正则表达式匹配的工具,可以按照组名输出匹配内容,还是挺方便的,代码留存一下,以后用的话,直接copy了。 Regex regex = new Regex(this.textBoxRegex.Text); Match result = regex....
分类:
其他好文 时间:
2014-08-14 23:21:16
阅读次数:
266
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
加上引用: 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非法字符串 /// /// /// public static string Filter(string value) { if (string.IsNullOrEmpty(value)) return string.Empty; value = Regex.Rep...
分类:
数据库 时间:
2014-08-14 00:56:27
阅读次数:
278
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