- 浏览: 2073774 次
- 性别:
- 来自: NYC
文章分类
- 全部博客 (628)
- Linux (53)
- RubyOnRails (294)
- HTML (8)
- 手册指南 (5)
- Mysql (14)
- PHP (3)
- Rails 汇总 (13)
- 读书 (22)
- plugin 插件介绍与应用 (12)
- Flex (2)
- Ruby技巧 (7)
- Gem包介绍 (1)
- javascript Jquery ext prototype (21)
- IT生活 (6)
- 小工具 (4)
- PHP 部署 drupal (1)
- javascript Jquery sort plugin 插件 (2)
- iphone siri ios (1)
- Ruby On Rails (106)
- 编程概念 (1)
- Unit Test (4)
- Ruby 1.9 (24)
- rake (1)
- Postgresql (6)
- ruby (5)
- respond_to? (1)
- method_missing (1)
- git (8)
- Rspec (1)
- ios (1)
- jquery (1)
- Sinatra (1)
最新评论
-
dadadada2x:
user模型里加上 protected def email ...
流行的权限管理 gem devise的定制 -
Sev7en_jun:
shrekting 写道var pattern = /^(0| ...
强悍的ip格式 正则表达式验证 -
jiasanshou:
好文章!!!
RPM包rpmbuild SPEC文件深度说明 -
寻得乐中乐:
link_to其实就是个a标签,使用css控制,添加一个参数: ...
Rails在link_to中加参数 -
aiafei0001:
完全看不懂,不知所然.能表达清楚一点?
"$ is not defined" 的问题怎么办
password =~ /^(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{6,40}$/ #(?=.*\d) any thing with a number #at least one number one up case one down case
^ - Matches beginning of line $ - Matches end of line \A - Matches beginning of string. \Z - Matches end of string. If string ends with a newline, it matches just before newline \z - Matches end of string \G - Matches point where last match finished \b - Matches word boundaries when outside brackets; backspace (0x08) when inside brackets \B - Matches non-word boundaries (?=pat) - Positive lookahead assertion: ensures that the following characters match pat, but doesn't include those characters in the matched text (?!pat) - Negative lookahead assertion: ensures that the following characters do not match pat, but doesn't include those characters in the matched text (?<=pat) - Positive lookbehind assertion: ensures that the preceding characters match pat, but doesn't include those characters in the matched text (?<!pat) - Negative lookbehind assertion: ensures that the preceding characters do not match pat, but doesn't include those characters in the matched text # If a pattern isn't anchored it can begin at any point in the string /real/.match("surrealist") #=> #<MatchData "real"> # Anchoring the pattern to the beginning of the string forces the # match to start there. 'real' doesn't occur at the beginning of the # string, so now the match fails /\Areal/.match("surrealist") #=> nil # The match below fails because although 'Demand' contains 'and', the pattern does not occur at a word boundary. /\band/.match("Demand") # Whereas in the following example 'and' has been anchored to a # non-word boundary so instead of matching the first 'and' it matches # from the fourth letter of 'demand' instead /\Band.+/.match("Supply and demand curve") #=> #<MatchData "and curve"> # The pattern below uses positive lookahead and positive lookbehind to # match text appearing in <b></b> tags without including the tags in the # match /(?<=<b>)\w+(?=<\/b>)/.match("Fortune favours the <b>bold</b>") #=> #<MatchData "bold">
http://www.tutorialspoint.com/ruby/ruby_regular_expressions.htm
发表评论
-
brew unable to unlink old 'README.md' (Permission denied)
2013-02-27 23:50 3946rvm install 2.0.0 met problem a ... -
2种使用class_eval动态定义方法的格式
2012-12-12 08:06 1218class MyClass def initiali ... -
ruby 1.9.3-p286 debugger-linecache
2012-10-18 21:10 1687update(05/13/2013) rbenv: 解决方 ... -
如何在Cucumber下运行ruby-debug
2012-04-07 00:19 1406# Gemfile group :development ... -
Cucumber Capybara Selenium 如何触发一个dom的点击事件
2012-04-06 12:50 2699就是 click_on 和 Press 只能针对button和 ... -
升级rails 3.2.3时候快速解决的小问题
2012-04-06 05:06 1351引用uninitialized constant Test:: ... -
Ruby 1.9.3 p125 安装ruby-debug
2012-04-05 00:50 1605Update: 4/10/2012 直接换成 gem 'deb ... -
关于block和闭包的练习
2012-03-06 11:25 1001关于block和闭包的练习 def example(num ... -
yield可以在block中吗?
2012-03-06 10:58 958类似如下的实现 a = lambda { puts ... -
动态定义ruby子类,和判断是否定义
2012-03-01 04:59 2609上篇有个标准的定义动态类变量 class MyClass ... -
动态定义类变量和类实例变量
2012-03-01 04:52 1570class Mine attr_accessor : ... -
Eloquent Ruby 读书笔记 续
2012-02-27 23:15 1207运算符重载和Ruby风格的运算符重载 程序大概意思是,重新定义 ... -
ruby 的 Enumerable 方法
2012-02-23 03:28 1177grep 是===来判断是否存在符合条件的sub enumer ... -
脱离rails环境单独使用capybara以及使用capybara测试拖放
2012-01-17 12:49 3505require 'rubygems' require ' ... -
ruby 1.9 rails 3.1 ruby debug的问题
2011-12-20 23:06 5722update(2015/05/12): for rbenv ... -
ruby array中找出重复元素
2011-12-14 12:28 2524#上文的inject现在用上了 module Enume ... -
也说说ruby inject
2011-12-12 08:09 1921其实,没有什么太多说的,IE有的先链接过来 http://b ... -
带序号循环Hash
2011-12-02 23:17 1909hash.keys.each_with_index do ... -
Ruby On Rails 面试系列七,一个面试练习题
2011-11-28 12:26 2473现在面试流行让你写代码放到github上,这是其中一个要求 ... -
关于json
2011-11-26 22:03 3341js.erb alert('New object i ...
相关推荐
4. **高级特性详解**:深入探讨了更复杂的正则表达式特性,如回溯控制、条件匹配、命名捕获组等,并通过具体例子展示如何利用这些特性编写更高效、更灵活的正则表达式。 5. **解决常见问题**:针对性能不佳、误报、...
最后,书中会讨论如何在各种编程语言中使用正则表达式,包括Perl、Java、JavaScript、Python和Ruby等。每种语言都有其特有的API和实现细节,理解这些差异对于实际开发至关重要。 总之,《精通正则表达式》第三版是...
精通正则表达式第三版 搜集于网络 前言..........I 第1章:正则表达式入门.... 1 解决实际问题... 2 作为编程语言的正则表达式... 4 以文件名做类比... 4 以语言做类比... 5 正则表达式的知识框架... 6 对于...
正则表达式作为一个强大的工具,在处理文本和数据时拥有极高的效率和灵活性,被广泛应用于多种编程语言和流行工具中,比如Perl、Python、Ruby、Java、***、C#(以及任何使用.NET框架的语言)、PHP和MySQL。...
2. **通过正则表达式语言本身:** Perl、Ruby、JavaScript等语言直接支持正则表达式的语法,允许用户直接在代码中使用正则表达式进行文本处理。 对于想要深入了解并熟练掌握正则表达式的开发者来说,建议选择一种...
3. Rubular:专为Ruby语言设计的正则表达式测试平台。 通过深入学习这些概念和技巧,你可以灵活运用正则表达式解决各种文本处理问题,提高工作效率。正则表达式虽然初学者可能觉得复杂,但随着实践和理解的加深,你...
- **Perl兼容**:Perl语言对正则表达式的支持最全面,其他语言如Python、Ruby等很大程度上兼容Perl的正则语法。 - **JavaScript正则**:JavaScript的正则表达式有些特殊,如它不支持条件表达式和嵌套反向引用。 -...
文章中提到使用Ruby来介绍递归正则表达式,但其实这些知识可以广泛应用于任何支持递归正则表达式的编程语言。例如,虽然JavaScript原生不支持递归正则表达式,但借助第三方库或者正则表达式工具,我们可以实现类似的...
因此,在编写正则表达式时,要尽量优化正则表达式结构,避免不必要的回溯和重复计算。 总之,Ruby正则表达式是文本处理的强大工具,提供了非常丰富的语法和灵活的匹配模式。掌握其使用方法对于任何使用Ruby进行开发...
用于从字符串列表创建紧凑的,非回溯的正则表达式。 安装 将此行添加到您的应用程序的Gemfile中: gem 'list_matcher' 然后执行: $ bundle 或将其自己安装为: $ gem install list_matcher 概要 require '...
NFA引擎则采用“贪婪的”匹配回溯算法,它会按指定顺序测试正则表达式的所有可能扩展,并接受第一个匹配项。由于NFA在执行匹配时会考虑多种可能性,并且可以多次访问同一状态,所以在最坏情况下,它的执行速度可能会...
正则表达式广泛应用于多种编程语言和应用程序中,包括但不限于Java、JavaScript、MySQL、C#、Perl、PHP、Python、Ruby、VB、VBScript和XML。 正则表达式的基本组成部分包括元字符(metacharacters)和普通字符...
**PCRE:Perl 5 正则表达式模式匹配** Perl 兼容正则表达式(PCRE)库是编程领域中的一个重要工具,它为多种编程语言提供了强大的文本处理功能。PCRE的设计目标是尽可能地与Perl 5的正则表达式语法和行为保持一致,...
2. **Ruby中的正则表达式验证** 使用Ruby的正则表达式(Regexp)可以方便地检查密码是否符合这些规则。例如,一个简单的正则表达式可能如下: ```ruby PASSWORD_PATTERN = /\A[a-zA-Z0-9@#$%^&+=]{8,}\z/ ``` ...