<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://sqle.ru/index.php?action=history&amp;feed=atom&amp;title=Oracle_PL%2FSQL_Tutorial%2FRegular_Expressions_Functions%2FIntroduction</id>
		<title>Oracle PL/SQL Tutorial/Regular Expressions Functions/Introduction - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://sqle.ru/index.php?action=history&amp;feed=atom&amp;title=Oracle_PL%2FSQL_Tutorial%2FRegular_Expressions_Functions%2FIntroduction"/>
		<link rel="alternate" type="text/html" href="http://sqle.ru/index.php?title=Oracle_PL/SQL_Tutorial/Regular_Expressions_Functions/Introduction&amp;action=history"/>
		<updated>2026-06-22T21:16:17Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://sqle.ru/index.php?title=Oracle_PL/SQL_Tutorial/Regular_Expressions_Functions/Introduction&amp;diff=4103&amp;oldid=prev</id>
		<title> в 13:45, 26 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://sqle.ru/index.php?title=Oracle_PL/SQL_Tutorial/Regular_Expressions_Functions/Introduction&amp;diff=4103&amp;oldid=prev"/>
				<updated>2010-05-26T13:45:46Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Предыдущая&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Версия 13:45, 26 мая 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
			</entry>

	<entry>
		<id>http://sqle.ru/index.php?title=Oracle_PL/SQL_Tutorial/Regular_Expressions_Functions/Introduction&amp;diff=4104&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://sqle.ru/index.php?title=Oracle_PL/SQL_Tutorial/Regular_Expressions_Functions/Introduction&amp;diff=4104&amp;oldid=prev"/>
				<updated>2010-05-26T10:08:38Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Regular Expression Functions==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;The regular expression functions available in Oracle Database 10g.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;REGEXP_LIKE(x, pattern [, match_option])&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Returns true when the source x matches the regular expression pattern.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;You can change the default matching using match_option, which may be set to:&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;OL&amp;gt;&amp;lt;LI&amp;gt;&amp;quot;c&amp;quot;, which specifies case sensitive matching (default).&amp;lt;/LI&amp;gt;&amp;lt;LI&amp;gt;&amp;quot;i&amp;quot;, which specifies case insensitive matching.&amp;lt;/LI&amp;gt;&amp;lt;LI&amp;gt;&amp;quot;n&amp;quot;, which allows you to use the match-any-character operator.&amp;lt;/LI&amp;gt;&amp;lt;LI&amp;gt;&amp;quot;m&amp;quot;, which treats x as multiple line.&amp;lt;/LI&amp;gt;&amp;lt;/OL&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;REGEXP_INSTR(x, pattern [, start [, occurrence [, return_option [, match_option]]]])&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Searches for pattern in x and returns the position at which pattern occurs.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;You can supply an optional:&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;OL&amp;gt;&amp;lt;LI&amp;gt;start position to begin the search.&amp;lt;/LI&amp;gt;&amp;lt;LI&amp;gt;occurrence that indicates which occurrence of pattern_exp should be returned.&amp;lt;/LI&amp;gt;&amp;lt;LI&amp;gt;return_option that indicates what integer to return. 0 specifies the integer to return is the position of the first character in x; non-zero specifies the integer to return is the position of the character in x after the occurrence.&amp;lt;/LI&amp;gt;&amp;lt;LI&amp;gt;match_option to change the default matching.&amp;lt;/LI&amp;gt;&amp;lt;/OL&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;REGEXP_REPLACE(x, pattern [, replace_string [, start [, occurrence [, match_option]]]])&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Searches x for pattern and replaces it with replace_string.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The other options have the same meaning as those shown earlier.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;REGEXP_SUBSTR(x, pattern [, start [, occurrence [, match_option]]])&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Returns a substring of x that matches pattern, which begins at the position specified by start.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The other options have the same meaning as those shown earlier.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Quote from:&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Oracle Database 10g SQL (Osborne ORACLE Press Series) (Paperback)&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;# Paperback: 608 pages&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;# Publisher: McGraw-Hill Osborne Media; 1st edition (February 20, 2004)&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;# Language: English&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;# ISBN-10: 0072229810&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;# ISBN-13: 978-0072229813&amp;lt;/p&amp;gt;&lt;br /&gt;
18. 1. Introduction&lt;br /&gt;
18. 1. 1. &lt;br /&gt;
&amp;lt;A href=&amp;quot;/Tutorial/Oracle/0360__Regular-Expressions-Functions/RegularExpressionMetacharacters.htm&amp;quot;&amp;gt;Regular Expression Metacharacters&amp;lt;/a&amp;gt;&lt;br /&gt;
18. 1. 2. &lt;br /&gt;
Regular Expression Functions&lt;br /&gt;
&lt;br /&gt;
== Regular Expression Metacharacters==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;The following table lists some of the metacharacters you can use in a regular expression, along with their meaning and a simple example of their use.&amp;lt;/p&amp;gt;&lt;br /&gt;
Metacharacters&lt;br /&gt;
Meaning&lt;br /&gt;
Examples&lt;br /&gt;
\&lt;br /&gt;
Indicates that the match character is a special character, a literal, or a backreference. (A backreference repeats the previous match.)&lt;br /&gt;
\n matches the newline character,\\ matches \, \( matches (, \) matches )&lt;br /&gt;
^&lt;br /&gt;
Matches the position at the start of the string.&lt;br /&gt;
^A matches A if A is the first character in the string.&lt;br /&gt;
$&lt;br /&gt;
Matches the position at the end of the string.&lt;br /&gt;
$B matches B if B is the last character in the string.&lt;br /&gt;
*&lt;br /&gt;
Matches the preceding character zero or more times.&lt;br /&gt;
ba*rk matches brk, bark, baark, and so on.&lt;br /&gt;
+&lt;br /&gt;
Matches the preceding character one or more times.&lt;br /&gt;
ba+rk matches bark, baark, and so on, but not brk.&lt;br /&gt;
?&lt;br /&gt;
Matches the preceding character zero or one time.&lt;br /&gt;
ba?rk matches brk and bark only.&lt;br /&gt;
{n}&lt;br /&gt;
Matches a character exactly n times, where n is an integer.&lt;br /&gt;
hob{2}it matches hobbit.&lt;br /&gt;
{n,m}&lt;br /&gt;
Matches a character at least n times and at most m times, where n and m are both integers.&lt;br /&gt;
hob{2,3}it matches hobbit and hobbbit only.&lt;br /&gt;
.&lt;br /&gt;
Matches any single character except null.&lt;br /&gt;
hob.it matches hobait, hobbit, and so on.&lt;br /&gt;
(pattern)&lt;br /&gt;
A subexpression that matches the specified pattern. You use subexpressions to build up complex regular expressions. You can access the individual matches, known as captures, from this type of subexpression.&lt;br /&gt;
anatom(y|ies) matches anatomy and anatomies.&lt;br /&gt;
x|y&lt;br /&gt;
Matches x or y, where x and y are one or more characters.&lt;br /&gt;
war|peace matches war or peace.&lt;br /&gt;
[abc]&lt;br /&gt;
Matches any of the enclosed characters.&lt;br /&gt;
[ab]bc matches abc and bbc.&lt;br /&gt;
[a-z]&lt;br /&gt;
Matches any character in the specified range.&lt;br /&gt;
[a-c]bc matches abc, bbc, and cbc.&lt;br /&gt;
[: :]&lt;br /&gt;
Specifies a character class and matches any character in that class.&lt;br /&gt;
[:alphanum:] matches alphanumeric characters 0-9, A-Z, and a-z.[:alpha:] matches alphabetic characters A-Z and a-z.[:blank:] matches space or tab.[:digit:] matches digits 0-9.[:graph:] matches non-blank characters.[:lower:] matches lowercase alphabetic characters a-z.[:print:] is similar to [:graph:] except [:print:] includes the space character.[:punct:] matches punctuation characters .,&amp;quot;&amp;quot;, and so on.[:space:] matches all whitespace characters.[:upper:] matches all uppercase alphabetic characters A-Z.[:xdigit:] matches characters permissible in a hexadecimal number 0-9, A-F, and a-f.&lt;br /&gt;
[..]&lt;br /&gt;
Matches one collation element, like a multicharacter element.&lt;br /&gt;
No example.&lt;br /&gt;
[==]&lt;br /&gt;
Specifies equivalence classes.&lt;br /&gt;
No example.&lt;br /&gt;
\n&lt;br /&gt;
This is a backreference to an earlier capture, where n is a positive integer.&lt;br /&gt;
(.)\1 matches two consecutive identical characters. The (.) captures any single character except null, and the \1 repeats the capture, matching the same character again, therefore matching two consecutive identical characters.&lt;br /&gt;
&amp;lt;p&amp;gt;Quote from:&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Oracle Database 10g SQL (Osborne ORACLE Press Series) (Paperback)&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;# Paperback: 608 pages&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;# Publisher: McGraw-Hill Osborne Media; 1st edition (February 20, 2004)&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;# Language: English&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;# ISBN-10: 0072229810&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;# ISBN-13: 978-0072229813&amp;lt;/p&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>