@@ -11473,8 +11473,8 @@ ________________________________________________________-->
11473
11473
</optional></optional></optional></optional></optional>).
11474
11474
在<replaceable>string</replaceable>中搜索<replaceable>pattern</replaceable>,通常从字符串的开头开始,但如果提供了<replaceable>start</replaceable>参数,则从该字符索引开始。
11475
11475
如果指定了<replaceable>N</replaceable>,则定位模式的第<replaceable>N</replaceable>个匹配项,否则定位第一个匹配项。
11476
- 如果省略了<replaceable>endoption</replaceable>参数或将其指定为零 ,则函数返回匹配项的第一个字符的位置。否则,<replaceable>endoption</replaceable>
11477
- 必须为一 ,函数返回匹配项后面字符的位置。
11476
+ 如果省略了<replaceable>endoption</replaceable>参数或将其指定为0 ,则函数返回匹配项的第一个字符的位置。否则,<replaceable>endoption</replaceable>
11477
+ 必须为1 ,函数返回匹配项后面字符的位置。
11478
11478
<replaceable>flags</replaceable>参数是一个可选的文本字符串,包含零个或多个单字母标志,可以改变函数的行为。支持的标志在<xref linkend="posix-embedded-options-table"/>中描述。
11479
11479
对于包含括号子表达式的模式,<replaceable>subexpr</replaceable>是一个整数,表示感兴趣的子表达式:结果标识与该子表达式匹配的子字符串的位置。
11480
11480
子表达式按其前导括号的顺序编号。
@@ -11964,13 +11964,13 @@ SELECT foo FROM regexp_split_to_table('the quick brown fox jumps over the lazy d
11964
11964
the
11965
11965
lazy
11966
11966
dog
11967
- (9 行 )
11967
+ (9 rows )
11968
11968
11969
11969
SELECT regexp_split_to_array('the quick brown fox jumps over the lazy dog', '\s+');
11970
11970
regexp_split_to_array
11971
11971
-----------------------------------------------
11972
11972
{the,quick,brown,fox,jumps,over,the,lazy,dog}
11973
- (1 行 )
11973
+ (1 row )
11974
11974
11975
11975
SELECT foo FROM regexp_split_to_table('the quick brown fox', '\s*') AS foo;
11976
11976
foo
@@ -11991,7 +11991,7 @@ SELECT foo FROM regexp_split_to_table('the quick brown fox', '\s*') AS foo;
11991
11991
f
11992
11992
o
11993
11993
x
11994
- (16 行 )
11994
+ (16 rows )
11995
11995
</programlisting>
11996
11996
</para>
11997
11997
<!-- pgdoc-cn_end sig_en=0fbf6ff361b55e9d9bd8d64af5cf90aa -->
@@ -12177,7 +12177,7 @@ ________________________________________________________-->
12177
12177
</para>
12178
12178
________________________________________________________-->
12179
12179
<para>
12180
- 一个分支是零个或多个<firstterm>量子化原子 </firstterm>或<firstterm>约束 </firstterm>,连接在一起。
12180
+ 一个分支是零个或多个<firstterm>quantified atoms </firstterm>或<firstterm>constraints </firstterm>,连接在一起。
12181
12181
它匹配第一个的匹配项,然后是第二个的匹配项,依此类推;一个空分支匹配空字符串。
12182
12182
</para>
12183
12183
<!-- pgdoc-cn_end sig_en=12cd2a6352f29d02a1fdf5ef0f53f5d7 -->
@@ -17658,8 +17658,8 @@ ________________________________________________________-->
17658
17658
________________________________________________________-->
17659
17659
<row>
17660
17660
<entry role="func_table_entry"><para role="func_signature">
17661
- <type>时间戳 </type> <literal>-</literal> <type>时间戳 </type>
17662
- <returnvalue>间隔 </returnvalue>
17661
+ <type>timestamp </type> <literal>-</literal> <type>timestamp </type>
17662
+ <returnvalue>interval </returnvalue>
17663
17663
</para>
17664
17664
<para>
17665
17665
减去时间戳(将24小时间隔转换为天数,类似于<link
0 commit comments