Functions for Searching in Strings

The search is case-sensitive by default in all these functions. There are separate variants for case insensitive search.

Note

Functions for replacing and other manipulations with strings are described separately.

position(haystack, needle), locate(haystack, needle)

Returns the position (in bytes) of the found substring in the string, starting from 1.

Works under the assumption that the string contains a set of bytes representing a single-byte encoded text. If this assumption is not met and a character can’t be represented using a single byte, the function doesn’t throw an exception and returns some unexpected result. If character can be represented using two bytes, it will use two bytes and so on.

For a case-insensitive search, use the function positionCaseInsensitive.

Syntax

  1. position(haystack, needle[, start_pos])

Alias: locate(haystack, needle[, start_pos]).

Parameters

  • haystack — string, in which substring will to be searched. String.
  • needle — substring to be searched. String.
  • start_pos – Optional parameter, position of the first character in the string to start search. UInt

Returned values

  • Starting position in bytes (counting from 1), if substring was found.
  • 0, if the substring was not found.

Type: Integer.

Examples

The phrase “Hello, world!” contains a set of bytes representing a single-byte encoded text. The function returns some expected result:

Query:

  1. SELECT position('Hello, world!', '!')

Result:

  1. ┌─position('Hello, world!', '!')─┐
  2. 13
  3. └────────────────────────────────┘
  1. SELECT
  2. position('Hello, world!', 'o', 1),
  3. position('Hello, world!', 'o', 7)
  1. ┌─position('Hello, world!', 'o', 1)─┬─position('Hello, world!', 'o', 7)─┐
  2. 5 9
  3. └───────────────────────────────────┴───────────────────────────────────┘

The same phrase in Russian contains characters which can’t be represented using a single byte. The function returns some unexpected result (use positionUTF8 function for multi-byte encoded text):

Query:

  1. SELECT position('Привет, мир!', '!')

Result:

  1. ┌─position('Привет, мир!', '!')─┐
  2. 21
  3. └───────────────────────────────┘

positionCaseInsensitive

The same as position returns the position (in bytes) of the found substring in the string, starting from 1. Use the function for a case-insensitive search.

Works under the assumption that the string contains a set of bytes representing a single-byte encoded text. If this assumption is not met and a character can’t be represented using a single byte, the function doesn’t throw an exception and returns some unexpected result. If character can be represented using two bytes, it will use two bytes and so on.

Syntax

  1. positionCaseInsensitive(haystack, needle[, start_pos])

Parameters

  • haystack — string, in which substring will to be searched. String.
  • needle — substring to be searched. String.
  • start_pos – Optional parameter, position of the first character in the string to start search. UInt

Returned values

  • Starting position in bytes (counting from 1), if substring was found.
  • 0, if the substring was not found.

Type: Integer.

Example

Query:

  1. SELECT positionCaseInsensitive('Hello, world!', 'hello')

Result:

  1. ┌─positionCaseInsensitive('Hello, world!', 'hello')─┐
  2. 1
  3. └───────────────────────────────────────────────────┘

positionUTF8

Returns the position (in Unicode points) of the found substring in the string, starting from 1.

Works under the assumption that the string contains a set of bytes representing a UTF-8 encoded text. If this assumption is not met, the function doesn’t throw an exception and returns some unexpected result. If character can be represented using two Unicode points, it will use two and so on.

For a case-insensitive search, use the function positionCaseInsensitiveUTF8.

Syntax

  1. positionUTF8(haystack, needle[, start_pos])

Parameters

  • haystack — string, in which substring will to be searched. String.
  • needle — substring to be searched. String.
  • start_pos – Optional parameter, position of the first character in the string to start search. UInt

Returned values

  • Starting position in Unicode points (counting from 1), if substring was found.
  • 0, if the substring was not found.

Type: Integer.

Examples

The phrase “Hello, world!” in Russian contains a set of Unicode points representing a single-point encoded text. The function returns some expected result:

Query:

  1. SELECT positionUTF8('Привет, мир!', '!')

Result:

  1. ┌─positionUTF8('Привет, мир!', '!')─┐
  2. 12
  3. └───────────────────────────────────┘

The phrase “Salut, étudiante!”, where character é can be represented using a one point (U+00E9) or two points (U+0065U+0301) the function can be returned some unexpected result:

Query for the letter é, which is represented one Unicode point U+00E9:

  1. SELECT positionUTF8('Salut, étudiante!', '!')

Result:

  1. ┌─positionUTF8('Salut, étudiante!', '!')─┐
  2. 17
  3. └────────────────────────────────────────┘

Query for the letter é, which is represented two Unicode points U+0065U+0301:

  1. SELECT positionUTF8('Salut, étudiante!', '!')

Result:

  1. ┌─positionUTF8('Salut, étudiante!', '!')─┐
  2. 18
  3. └────────────────────────────────────────┘

positionCaseInsensitiveUTF8

The same as positionUTF8, but is case-insensitive. Returns the position (in Unicode points) of the found substring in the string, starting from 1.

Works under the assumption that the string contains a set of bytes representing a UTF-8 encoded text. If this assumption is not met, the function doesn’t throw an exception and returns some unexpected result. If character can be represented using two Unicode points, it will use two and so on.

Syntax

  1. positionCaseInsensitiveUTF8(haystack, needle[, start_pos])

Parameters

  • haystack — string, in which substring will to be searched. String.
  • needle — substring to be searched. String.
  • start_pos – Optional parameter, position of the first character in the string to start search. UInt

Returned value

  • Starting position in Unicode points (counting from 1), if substring was found.
  • 0, if the substring was not found.

Type: Integer.

Example

Query:

  1. SELECT positionCaseInsensitiveUTF8('Привет, мир!', 'Мир')

Result:

  1. ┌─positionCaseInsensitiveUTF8('Привет, мир!', 'Мир')─┐
  2. 9
  3. └────────────────────────────────────────────────────┘

multiSearchAllPositions

The same as position but returns Array of positions (in bytes) of the found corresponding substrings in the string. Positions are indexed starting from 1.

The search is performed on sequences of bytes without respect to string encoding and collation.

  • For case-insensitive ASCII search, use the function multiSearchAllPositionsCaseInsensitive.
  • For search in UTF-8, use the function multiSearchAllPositionsUTF8.
  • For case-insensitive UTF-8 search, use the function multiSearchAllPositionsCaseInsensitiveUTF8.

Syntax

  1. multiSearchAllPositions(haystack, [needle1, needle2, ..., needlen])

Parameters

  • haystack — string, in which substring will to be searched. String.
  • needle — substring to be searched. String.

Returned values

  • Array of starting positions in bytes (counting from 1), if the corresponding substring was found and 0 if not found.

Example

Query:

  1. SELECT multiSearchAllPositions('Hello, World!', ['hello', '!', 'world'])

Result:

  1. ┌─multiSearchAllPositions('Hello, World!', ['hello', '!', 'world'])─┐
  2. [0,13,0]
  3. └───────────────────────────────────────────────────────────────────┘

multiSearchAllPositionsUTF8

See multiSearchAllPositions.

multiSearchFirstPosition(haystack, [needle1, needle2, …, needlen])

The same as position but returns the leftmost offset of the string haystack that is matched to some of the needles.

For a case-insensitive search or/and in UTF-8 format use functions multiSearchFirstPositionCaseInsensitive, multiSearchFirstPositionUTF8, multiSearchFirstPositionCaseInsensitiveUTF8.

multiSearchFirstIndex(haystack, [needle1, needle2, …, needlen])

Returns the index i (starting from 1) of the leftmost found needlei in the string haystack and 0 otherwise.

For a case-insensitive search or/and in UTF-8 format use functions multiSearchFirstIndexCaseInsensitive, multiSearchFirstIndexUTF8, multiSearchFirstIndexCaseInsensitiveUTF8.

multiSearchAny(haystack, [needle1, needle2, …, needlen])

Returns 1, if at least one string needlei matches the string haystack and 0 otherwise.

For a case-insensitive search or/and in UTF-8 format use functions multiSearchAnyCaseInsensitive, multiSearchAnyUTF8, multiSearchAnyCaseInsensitiveUTF8.

Note

In all multiSearch* functions the number of needles should be less than 28 because of implementation specification.

match(haystack, pattern)

Checks whether the string matches the pattern regular expression. A re2 regular expression. The syntax of the re2 regular expressions is more limited than the syntax of the Perl regular expressions.

Returns 0 if it doesn’t match, or 1 if it matches.

Note that the backslash symbol (\) is used for escaping in the regular expression. The same symbol is used for escaping in string literals. So in order to escape the symbol in a regular expression, you must write two backslashes (\) in a string literal.

The regular expression works with the string as if it is a set of bytes. The regular expression can’t contain null bytes.
For patterns to search for substrings in a string, it is better to use LIKE or ‘position’, since they work much faster.

multiMatchAny(haystack, [pattern1, pattern2, …, patternn])

The same as match, but returns 0 if none of the regular expressions are matched and 1 if any of the patterns matches. It uses hyperscan library. For patterns to search substrings in a string, it is better to use multiSearchAny since it works much faster.

Note

The length of any of the haystack string must be less than 232 bytes otherwise the exception is thrown. This restriction takes place because of hyperscan API.

multiMatchAnyIndex(haystack, [pattern1, pattern2, …, patternn])

The same as multiMatchAny, but returns any index that matches the haystack.

multiMatchAllIndices(haystack, [pattern1, pattern2, …, patternn])

The same as multiMatchAny, but returns the array of all indicies that match the haystack in any order.

multiFuzzyMatchAny(haystack, distance, [pattern1, pattern2, …, patternn])

The same as multiMatchAny, but returns 1 if any pattern matches the haystack within a constant edit distance. This function is also in an experimental mode and can be extremely slow. For more information see hyperscan documentation.

multiFuzzyMatchAnyIndex(haystack, distance, [pattern1, pattern2, …, patternn])

The same as multiFuzzyMatchAny, but returns any index that matches the haystack within a constant edit distance.

multiFuzzyMatchAllIndices(haystack, distance, [pattern1, pattern2, …, patternn])

The same as multiFuzzyMatchAny, but returns the array of all indices in any order that match the haystack within a constant edit distance.

Note

multiFuzzyMatch* functions do not support UTF-8 regular expressions, and such expressions are treated as bytes because of hyperscan restriction.

Note

To turn off all functions that use hyperscan, use setting SET allow_hyperscan = 0;.

extract(haystack, pattern)

Extracts a fragment of a string using a regular expression. If ‘haystack’ doesn’t match the ‘pattern’ regex, an empty string is returned. If the regex doesn’t contain subpatterns, it takes the fragment that matches the entire regex. Otherwise, it takes the fragment that matches the first subpattern.

extractAll(haystack, pattern)

Extracts all the fragments of a string using a regular expression. If ‘haystack’ doesn’t match the ‘pattern’ regex, an empty string is returned. Returns an array of strings consisting of all matches to the regex. In general, the behavior is the same as the ‘extract’ function (it takes the first subpattern, or the entire expression if there isn’t a subpattern).

extractAllGroupsHorizontal

Matches all groups of the haystack string using the pattern regular expression. Returns an array of arrays, where the first array includes all fragments matching the first group, the second array - matching the second group, etc.

Note

extractAllGroupsHorizontal function is slower than extractAllGroupsVertical.

Syntax

  1. extractAllGroupsHorizontal(haystack, pattern)

Parameters

  • haystack — Input string. Type: String.
  • pattern — Regular expression with re2 syntax. Must contain groups, each group enclosed in parentheses. If pattern contains no groups, an exception is thrown. Type: String.

Returned value

If haystack doesn’t match the pattern regex, an array of empty arrays is returned.

Example

Query:

  1. SELECT extractAllGroupsHorizontal('abc=111, def=222, ghi=333', '("[^"]+"|\\w+)=("[^"]+"|\\w+)')

Result:

  1. ┌─extractAllGroupsHorizontal('abc=111, def=222, ghi=333', '("[^"]+"|\\w+)=("[^"]+"|\\w+)')─┐
  2. [['abc','def','ghi'],['111','222','333']]
  3. └──────────────────────────────────────────────────────────────────────────────────────────┘

See also
- extractAllGroupsVertical

extractAllGroupsVertical

Matches all groups of the haystack string using the pattern regular expression. Returns an array of arrays, where each array includes matching fragments from every group. Fragments are grouped in order of appearance in the haystack.

Syntax

  1. extractAllGroupsVertical(haystack, pattern)

Parameters

  • haystack — Input string. Type: String.
  • pattern — Regular expression with re2 syntax. Must contain groups, each group enclosed in parentheses. If pattern contains no groups, an exception is thrown. Type: String.

Returned value

If haystack doesn’t match the pattern regex, an empty array is returned.

Example

Query:

  1. SELECT extractAllGroupsVertical('abc=111, def=222, ghi=333', '("[^"]+"|\\w+)=("[^"]+"|\\w+)')

Result:

  1. ┌─extractAllGroupsVertical('abc=111, def=222, ghi=333', '("[^"]+"|\\w+)=("[^"]+"|\\w+)')─┐
  2. [['abc','111'],['def','222'],['ghi','333']]
  3. └────────────────────────────────────────────────────────────────────────────────────────┘

See also
- extractAllGroupsHorizontal

like(haystack, pattern), haystack LIKE pattern operator

Checks whether a string matches a simple regular expression.
The regular expression can contain the metasymbols % and _.

% indicates any quantity of any bytes (including zero characters).

_ indicates any one byte.

Use the backslash (\) for escaping metasymbols. See the note on escaping in the description of the ‘match’ function.

For regular expressions like %needle%, the code is more optimal and works as fast as the position function.
For other regular expressions, the code is the same as for the ‘match’ function.

notLike(haystack, pattern), haystack NOT LIKE pattern operator

The same thing as ‘like’, but negative.

ilike

Case insensitive variant of like function. You can use ILIKE operator instead of the ilike function.

Syntax

  1. ilike(haystack, pattern)

Parameters

  • haystack — Input string. String.
  • pattern — If pattern doesn’t contain percent signs or underscores, then the pattern only represents the string itself. An underscore (_) in pattern stands for (matches) any single character. A percent sign (%) matches any sequence of zero or more characters.

Some pattern examples:

  1. 'abc' ILIKE 'abc' true
  2. 'abc' ILIKE 'a%' true
  3. 'abc' ILIKE '_b_' true
  4. 'abc' ILIKE 'c' false

Returned values

  • True, if the string matches pattern.
  • False, if the string doesn’t match pattern.

Example

Input table:

  1. ┌─id─┬─name─────┬─days─┐
  2. 1 January 31
  3. 2 February 29
  4. 3 March 31
  5. 4 April 30
  6. └────┴──────────┴──────┘

Query:

  1. SELECT * FROM Months WHERE ilike(name, '%j%')

Result:

  1. ┌─id─┬─name────┬─days─┐
  2. 1 January 31
  3. └────┴─────────┴──────┘

See Also

ngramDistance(haystack, needle)

Calculates the 4-gram distance between haystack and needle: counts the symmetric difference between two multisets of 4-grams and normalizes it by the sum of their cardinalities. Returns float number from 0 to 1 – the closer to zero, the more strings are similar to each other. If the constant needle or haystack is more than 32Kb, throws an exception. If some of the non-constant haystack or needle strings are more than 32Kb, the distance is always one.

For case-insensitive search or/and in UTF-8 format use functions ngramDistanceCaseInsensitive, ngramDistanceUTF8, ngramDistanceCaseInsensitiveUTF8.

ngramSearch(haystack, needle)

Same as ngramDistance but calculates the non-symmetric difference between needle and haystack – the number of n-grams from needle minus the common number of n-grams normalized by the number of needle n-grams. The closer to one, the more likely needle is in the haystack. Can be useful for fuzzy string search.

For case-insensitive search or/and in UTF-8 format use functions ngramSearchCaseInsensitive, ngramSearchUTF8, ngramSearchCaseInsensitiveUTF8.

Note

For UTF-8 case we use 3-gram distance. All these are not perfectly fair n-gram distances. We use 2-byte hashes to hash n-grams and then calculate the (non-)symmetric difference between these hash tables – collisions may occur. With UTF-8 case-insensitive format we do not use fair tolower function – we zero the 5-th bit (starting from zero) of each codepoint byte and first bit of zeroth byte if bytes more than one – this works for Latin and mostly for all Cyrillic letters.

Original article