Skip to content

Commit e0da93f

Browse files
committed
校验 func.sgml:
- 校验到第100个 sig_en=f87307b62d8c817c9f2d936308e8b1a2 sig_cn_org=b7e29e252684e05f3b56949db22de0b0
1 parent 60f5558 commit e0da93f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

postgresql/doc/src/sgml/func.sgml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11473,8 +11473,8 @@ ________________________________________________________-->
1147311473
</optional></optional></optional></optional></optional>).
1147411474
在<replaceable>string</replaceable>中搜索<replaceable>pattern</replaceable>,通常从字符串的开头开始,但如果提供了<replaceable>start</replaceable>参数,则从该字符索引开始。
1147511475
如果指定了<replaceable>N</replaceable>,则定位模式的第<replaceable>N</replaceable>个匹配项,否则定位第一个匹配项。
11476-
如果省略了<replaceable>endoption</replaceable>参数或将其指定为零,则函数返回匹配项的第一个字符的位置。否则,<replaceable>endoption</replaceable>
11477-
必须为一,函数返回匹配项后面字符的位置。
11476+
如果省略了<replaceable>endoption</replaceable>参数或将其指定为0,则函数返回匹配项的第一个字符的位置。否则,<replaceable>endoption</replaceable>
11477+
必须为1,函数返回匹配项后面字符的位置。
1147811478
<replaceable>flags</replaceable>参数是一个可选的文本字符串,包含零个或多个单字母标志,可以改变函数的行为。支持的标志在<xref linkend="posix-embedded-options-table"/>中描述。
1147911479
对于包含括号子表达式的模式,<replaceable>subexpr</replaceable>是一个整数,表示感兴趣的子表达式:结果标识与该子表达式匹配的子字符串的位置。
1148011480
子表达式按其前导括号的顺序编号。
@@ -11964,13 +11964,13 @@ SELECT foo FROM regexp_split_to_table('the quick brown fox jumps over the lazy d
1196411964
the
1196511965
lazy
1196611966
dog
11967-
(9 )
11967+
(9 rows)
1196811968

1196911969
SELECT regexp_split_to_array('the quick brown fox jumps over the lazy dog', '\s+');
1197011970
regexp_split_to_array
1197111971
-----------------------------------------------
1197211972
{the,quick,brown,fox,jumps,over,the,lazy,dog}
11973-
(1 )
11973+
(1 row)
1197411974

1197511975
SELECT foo FROM regexp_split_to_table('the quick brown fox', '\s*') AS foo;
1197611976
foo
@@ -11991,7 +11991,7 @@ SELECT foo FROM regexp_split_to_table('the quick brown fox', '\s*') AS foo;
1199111991
f
1199211992
o
1199311993
x
11994-
(16 )
11994+
(16 rows)
1199511995
</programlisting>
1199611996
</para>
1199711997
<!-- pgdoc-cn_end sig_en=0fbf6ff361b55e9d9bd8d64af5cf90aa -->
@@ -12177,7 +12177,7 @@ ________________________________________________________-->
1217712177
</para>
1217812178
________________________________________________________-->
1217912179
<para>
12180-
一个分支是零个或多个<firstterm>量子化原子</firstterm>或<firstterm>约束</firstterm>,连接在一起。
12180+
一个分支是零个或多个<firstterm>quantified atoms</firstterm>或<firstterm>constraints</firstterm>,连接在一起。
1218112181
它匹配第一个的匹配项,然后是第二个的匹配项,依此类推;一个空分支匹配空字符串。
1218212182
</para>
1218312183
<!-- pgdoc-cn_end sig_en=12cd2a6352f29d02a1fdf5ef0f53f5d7 -->
@@ -17658,8 +17658,8 @@ ________________________________________________________-->
1765817658
________________________________________________________-->
1765917659
<row>
1766017660
<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>
1766317663
</para>
1766417664
<para>
1766517665
减去时间戳(将24小时间隔转换为天数,类似于<link

0 commit comments

Comments
 (0)