blockly > utils > string > commonWordSuffix

utils.string.commonWordSuffix() 函数

给定字符串数组,返回公共后缀的长度。不能拆分字词。字词后的任何空格都会包含在长度中。

Signature:

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

参数

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

返回

number

公共后缀的长度。