article

A subsequence, substring, prefix or suffix of a string is a new string, containing elements from the original, and in the same order. In this context, the terms string and sequence have the same meaning.

Subsequence


Main article subsequence

A subsequence of a string T = t_1 t_2 \dots t_n is a string P = p_1 \dots p_m = t_{i_1} \dots t_{i_m} such that i_1 < \dots < i_m, where m \leq n. Subsequence is a generalisation of substring, suffix and prefix. Finding the longest string which is a subsequence of two or more strings is known as the longest common subsequence problem.

Example: The string anna is a subsequence of the string banana:

T = banana || || P = an na

Substring


A substring of a string T = t_1 \dots t_n is a string P = p_1 \dots p_m = t_{1+i} \dots t_{m+i}. A substring of a string is a prefix of a suffix of the string, and equivalently a suffix of a prefix. If P is a substring of T, it is also a subsequence, which is a more general concept. Given a pattern P, you can find its occurrences in a string T with a string searching algorithm. Finding the longest string which is a substring of two or more strings is known as the longest common substring problem.

Example: The string ana is a substring (and subsequence) of banana at two different offsets:

T = banana ||||| P = ana|| ||| P = ana

In the mathematical literature, substrings are also called subwords (in America) or factors (in Europe).

Prefix


A prefix of a string T = t_1 \dots t_n is a string P = p_1 \dots p_m = t_1 \dots t_{m}, where m \leq n. A proper prefix of a string is not equal to the string itself and not empty (0 < m < n). A prefix can be seen as a special case of a substring.

Example: The string ban is a prefix (and substring and subsequence) of the string banana:

T = banana ||| P = ban

Suffix


A suffix of a string T = t_1 \dots t_n is a string P = p_1 \dots p_m = t_{n-m+1} \dots t_{n}, where m \leq n. A proper suffix of a string is not equal to the string itself and not empty (0 < m < n). A suffix can be seen as a special case of a substring.

Example: The string nana is a suffix (and substring and subsequence) of the string banana:

T = banana |||| P = nana

References


Algorithms on strings

Подстрока

 

This article is licensed under the GNU Free Documentation License. It uses material from the "Substring".

Home Pageartsbusinesscomputersgameshealthhospitalshomekids & teensnewsphysiciansrecreationreferenceregionalscienceshoppingsocietysportsworld