We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 047c4a9 commit 73afed6Copy full SHA for 73afed6
components/string.rst
@@ -301,9 +301,9 @@ Methods to Search and Replace
301
// result = ['avatar-73647.png', '73647']
302
303
// checks if the string contains any of the other given strings
304
- u('aeiou')->containsAny('a'); // true
305
- u('aeiou')->containsAny(['a', 'b']); // true
306
- u('aeiou')->containsAny(['j', 't', 'z']); // false
+ u('aeiou')->containsAny('a'); // true
+ u('aeiou')->containsAny(['ab', 'efg']); // false
+ u('aeiou')->containsAny(['eio', 'foo', 'z']); // true
307
308
// finds the position of the first occurrence of the given string
309
// (the second argument is the position where the search starts and negative
0 commit comments