Terdapat tiga cara untuk memintas rentetan dalam Oracle: Fungsi SUBSTR: mengekstrak subrentetan berdasarkan kedudukan permulaan dan panjang. Fungsi INSTR: Tentukan kedudukan di mana subrentetan muncul, dan memintas rentetan dengan fungsi SUBSTR. Fungsi REGEXP_SUBSTR: Ekstrak subrentetan daripada rentetan menggunakan ungkapan biasa. . sintaksnya adalah seperti berikut:
<code>SUBSTR(string, start_position, length)</code>Salin selepas log masuk
start_position
ialah kedudukan di mana subrentetan bermula. Intercept rentetan "Hello World" dari watak ke-4 ke watak ke-7:
<code>SUBSTR('Hello World', 4, 4)</code>
result: "worl"
string
是要截取的字符串。start_position
是子字符串开始的位置。length
是子字符串的长度。示例:
截取字符串 "Hello World" 从第 4 个字符到第 7 个字符:
<code>INSTR(string, substring, start_position, occurrence)</code>
结果:"Worl"
2. INSTR 函数
INSTR 函数返回子字符串在字符串中出现的第一个位置,语法如下:
<code>INSTR('Hello World, Hello Oracle', 'Hello')</code>
string
是要搜索的字符串。substring
是要查找的子字符串。start_position
(可选)是搜索的开始位置。默认为 1,表示字符串的开头。occurrence
(可选)是匹配的子字符串序号。默认为 1,表示第一个匹配项。示例:
在字符串 "Hello World, Hello Oracle" 中找到子字符串 "Hello" 的位置:
<code>REGEXP_SUBSTR(string, pattern, position, occurrence, flags)</code>
结果:1
使用 INSTR 函数确定子字符串的位置后,可以结合 SUBSTR 函数截取字符串。
3. REGEXP_SUBSTR 函数
REGEXP_SUBSTR 函数使用正则表达式从字符串中提取子字符串,语法如下:
<code>REGEXP_SUBSTR('Hello123World', '[0-9]+')</code>
string
是要截取的字符串。pattern
是正则表达式模式。position
(可选)是返回的子字符串的序号。默认为 1,表示第一个匹配项。occurrence
(可选)是匹配的子字符串序号。默认为 1,表示第一个匹配项。flags
rrreeesubstring
ialah subrentetan yang boleh ditemui.
Atas ialah kandungan terperinci Bagaimana untuk memintas rentetan dalam oracle. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!