repl.txt (629B)
1 2 {{alias}}( str[, fromIndex] ) 3 Returns the next extended grapheme cluster break in a string after a 4 specified position. 5 6 Parameters 7 ---------- 8 str: string 9 Input string. 10 11 fromIndex: integer (optional) 12 Position. Default: 0. 13 14 Returns 15 ------- 16 out: integer 17 Next extended grapheme cluster break position. 18 19 Examples 20 -------- 21 > var out = {{alias}}( 'last man standing', 4 ) 22 5 23 > out = {{alias}}( 'presidential election', 8 ) 24 9 25 > out = {{alias}}( 'अनुच्छेद', 1 ) 26 3 27 > out = {{alias}}( '🌷' ) 28 -1 29 30 See Also 31 --------