blockly >实用程序 >字符串 >commonWordSuffix

utils.string.commonWordSuffix() 函数

给定一个字符串数组,返回公共后缀的长度。不得拆分字词。字词后的所有空格都会计入长度。

Signature:

export declare function commonWordSuffix(array: string[], opt_shortest?: number): number;

参数

参数 类型 说明
数组 字符串[] 字符串数组。
opt_shortest number (可选)最短字符串的长度。

返回

number

常用后缀的长度。