NGrams - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


StringTools

  

NGrams

  

compute the n-grams of a string

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

NGrams( s, n )

Parameters

s

-

string

n

-

non-negative (32-bit) integer

Description

• 

The NGrams( s, n ) command computes the ordered list of n-grams of the string s. The second argument n must be a 32-bit positive integer no larger than the length of s.

• 

An n-gram of s is a substring of s consisting of exactly n contiguous characters from s.

• 

The empty string  has no n-grams, for any value of n.

• 

Note that NGrams( s, 1 ) is equivalent to .

• 

All of the StringTools package commands treat strings as (null-terminated) sequences of -bit (ASCII) characters.  Thus, there is no support for multibyte character encodings, such as unicode encodings.

Examples

(1)

(2)

(3)

(4)

(5)

See Also

length

StringTools

StringTools[Explode]

StringTools[SimilarityCoefficient]

 


Download Help Document