substring的用法

文/

substring用于截取字符串的某部分,其基本语法为select substring(字符串或者列名,起始位置,截取长度)from表。

Substring的用法

这个函数返回第一个参数中从第二个参数指定的位置开始、第三个参数指定的长度的子字符串。

该字符串中的每个字符都被认为具有数字位置:第一个字符的位置是 1,第二个字符的位置是 2,依此类推。

如果未指定第三个参数,将返回从第二个参数指定的位置开始直到字符串结尾的子字符串。

如果参数不是字符串类型,将先使用 string() 函数转换为字符串,然后计算该转换的结果。

如:以下函数调用返回“234”: substring("12345",2,3)

substring双语例句

The Substring function will extract text from a source string.

Substring函数将从一个源字符串中提取文本。

Improved Algorithm for BM String Matching Based on Prefix Substring

基于前缀的BM串匹配改进算法

Scalable Distributed Data Structure for Substring Searching

具有子串检索功能的可扩展分布式数据结构

Returns the index of the first character of a specified substring in a string.

返回指定子串首字符在串中的索引。

The length argument specifies the length of the desired substring.

长度参数指定了所需子字符串的长度。

小编推荐

下载文档