Regular Expression Character and Sub-Expression Modifiers : sub with regular expressions « String « Ruby

Home
Ruby
1.ActiveRecord
2.Array
3.CGI
4.Class
5.Collections
6.Database
7.Date
8.Design Patterns
9.Development
10.File Directory
11.GUI
12.Hash
13.Language Basics
14.Method
15.Network
16.Number
17.Rails
18.Range
19.Reflection
20.Statement
21.String
22.Threads
23.Time
24.Tk
25.Unit Test
26.Windows Platform
27.XML
Ruby » String » sub with regular expressions 




Regular Expression Character and Sub-Expression Modifiers


Modifier      Description 
*             Match zero or more occurrences of the preceding character, and match as many as possible.
+             Match one or more occurrences of the preceding character, and match as many as possible.
*?            Match zero or more occurrences of the preceding character, and match as few as possible.
+?            Match one or more occurrences of the preceding character, and match as few as possible.
?             Match either one or none of the preceding character.
{x}           Match x occurrences of the preceding character.
{x,y}         Match at least x occurrences and at most y occurrences.

 














Related examples in the same category
1.Basic Special Characters and Symbols Within Regular Expressions
2.To replace the first two characters of a string with 'Hello':
3.To change the last two letters
4.scan is the iterator method you require:
5.scan(/../): . means Any character
6.scan (/\w\w/): \w means Any letter, digit, or underscore
7.Index string by regular expression
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.