Lines Matching refs:substring
39 { str1: 'appleappleapple'.substring(0, 5), str2: 'appleappleapple'.substring(5, 10) },
40 { str1: 'appleappleapple'.substring(1, 6), str2: 'appleappleapple'.substring(6, 11) },
41 { str1: 'appleappleapple'.substring(0, 5), str2: 'appleappleapple'.substring(10, 15) },
42 { str1: 'appleappleapple'.substring(0, 5), str2: 'appleappleapple'.substring(5, 11) },
54 { str1: 'appleappleapple'.substring(5, 10), str2: 'app'.concat('le') },
55 { str1: 'hello'.concat('world'), str2: 'ohelloworld'.substring(1) },
56 { str1: 'hello'.concat('world'), str2: 'ohelloworld'.substring(2) },
57 { str1: 'appleappleapple'.substring(5, 11), str2: 'app'.concat('le') },
59 { str1: 'apple', str2: 'appleappleapple'.substring(5, 10) },
60 { str1: 'appleappleapple'.substring(0, 5), str2: 'apple' },
62 … { str1: 'hello'.concat('world').substring(2, 4), str2: 'hello'.substring(2, 3).concat('l') },