Lines Matching full:str
17 … const str = "The quick brown fox jumps over the lazy dog. If the dog reacted, was it really lazy?" constant
20 str.replace(/dog/g, 'monkey');
30 const str = 'Apples are round, and apples are juicy.'; constant
33 str.replace(re, 'Christmas');
54 const str = "Hello World. How are you doing?" constant
57 str.split(" ", 3);
65 const str = "The quick brown fox jumps over the lazy dog." constant
68 str.split(" ");
76 const str = "Harry Trump ;Fred Barney; Helen Rigby ; Bill Abel ;Chris Hand " constant
80 str.split(re);
88 … const str = "The quick brown fox jumps over the lazy dog. If the dog barked, was it really lazy?" constant
92 str.indexOf(searchTerm);
100 … const str = "The quick brown fox jumps over the lazy dog. If the dog barked, was it really lazy?" constant
104 str.indexOf(searchTerm);
112 … const str = "The quick brown fox jumps over the lazy dog. If the dog barked, was it really lazy?" constant
115 str.indexOf("",10);
123 const str = "Hello World. How are you doing?" constant
126 str.slice(14);
134 const str = "The quick brown fox jumps over the lazy dog." constant
137 str.slice(4, 19);
145 const str = "Hello World. How are you doing?" constant
148 str.slice(-9, -5);
156 const str = "Hello World. How are you doing?" constant
159 str.substring(1,10);
167 const str = "The quick brown fox jumps over the lazy dog." constant
170 str.substring(19,3);
178 const str = "Hello World. How are you doing?" constant
181 str.substring(4,4);
189 const str = "Hello World. How are you doing?" constant
192 str.substr(1,2);
200 const str = 'abcdefghij' constant
203 str.substr(-3,2);
211 const str = "abcdefghij" constant
214 str.substr(1,7);
222 … const str = "The quick brown fox jumps over the lazy dog. If the dog reacted, was it really lazy?" constant
225 str.replace('dog', 'monkey');
233 const str = 'Twas the night before Xmas...' constant
236 str.replace('Twas', 'Christmas');
244 … const str = "The quick brown fox jumps over the lazy dog. If the dog reacted, was it really lazy?" constant
247 str.replace('fox', 'monkey');
255 const str = "abc" constant
258 str.repeat(3);
266 const str = "abc" constant
269 str.repeat(3.5);
277 const str = "abc" constant
280 str.repeat(1);
288 const str = "Hello World. How are you doing?" constant
291 str.startsWith('Hel');
299 const str = 'Saturday night plans'; constant
302 str.startsWith('Sat');
310 const str = 'Saturday night plans'; constant
313 str.startsWith('Sat', 3);
321 const str = "Hello World. How are you doing?" constant
324 str.charCodeAt(4);
332 const str = "Hello World. How are you doing?" constant
335 str.charCodeAt(10);
343 const str = "Hello World. How are you doing?" constant
346 str.charCodeAt(99);
354 const str = "Hello World. How are you doing?" constant
357 str.charAt(4);
365 const str = "Hello World. How are you doing?" constant
368 str.charAt(10);
376 const str = "Hello World. How are you doing?" constant
379 str.charAt(99);
387 const str = "Hello World. How are you doing?" constant
390 str.toLowerCase();
398 const str = 'The quick brown fox jumps over the lazy dog.' constant
401 str.toLowerCase();
409 const str = "Hello World" constant
412 str.toLowerCase();
420 const str = "Hello World. How are you doing?" constant
423 str.toUpperCase();
431 const str = "Hello World" constant
434 str.toUpperCase();
442 const str = 'The quick brown fox jumps over the lazy dog.' constant
445 str.toUpperCase();
483 const str = " This is a test string to test the interface " constant
486 str.trim();
494 const str = ' Hello world! ' constant
497 str.trim();
505 const str = " This is a test string " constant
508 str.trim();
518 const str = "a"; constant
522 for (const c of str) { // Triggers JSIterator::CreateIterResultObject