From 824a2d9f587ca017fc71b84d835e72f54f9c87c4 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 7 Nov 2018 18:02:36 +0100 Subject: Began rewrite --- node_modules/locutus/php/strings/substr_count.js | 41 ++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 node_modules/locutus/php/strings/substr_count.js (limited to 'node_modules/locutus/php/strings/substr_count.js') diff --git a/node_modules/locutus/php/strings/substr_count.js b/node_modules/locutus/php/strings/substr_count.js new file mode 100644 index 0000000..9a17e93 --- /dev/null +++ b/node_modules/locutus/php/strings/substr_count.js @@ -0,0 +1,41 @@ +'use strict'; + +module.exports = function substr_count(haystack, needle, offset, length) { + // eslint-disable-line camelcase + // discuss at: http://locutus.io/php/substr_count/ + // original by: Kevin van Zonneveld (http://kvz.io) + // bugfixed by: Onno Marsman (https://twitter.com/onnomarsman) + // improved by: Brett Zamir (http://brett-zamir.me) + // improved by: Thomas + // example 1: substr_count('Kevin van Zonneveld', 'e') + // returns 1: 3 + // example 2: substr_count('Kevin van Zonneveld', 'K', 1) + // returns 2: 0 + // example 3: substr_count('Kevin van Zonneveld', 'Z', 0, 10) + // returns 3: false + + var cnt = 0; + + haystack += ''; + needle += ''; + if (isNaN(offset)) { + offset = 0; + } + if (isNaN(length)) { + length = 0; + } + if (needle.length === 0) { + return false; + } + offset--; + + while ((offset = haystack.indexOf(needle, offset + 1)) !== -1) { + if (length > 0 && offset + needle.length > length) { + return false; + } + cnt++; + } + + return cnt; +}; +//# sourceMappingURL=substr_count.js.map \ No newline at end of file -- cgit v1.2.3