Count occurrences of a substring: Difference between revisions

m
syntax highlighting fixup automation
m (syntax highlighting fixup automation)
Line 10:
 
It should return an integer count.
<langsyntaxhighlight lang="pseudocode">print countSubstring("the three truths","th")
3
 
// do not count substrings that overlap with previously-counted substrings:
print countSubstring("ababababab","abab")
2</langsyntaxhighlight>
 
The matching should yield the highest number of non-overlapping matches.
Line 26:
 
=={{header|11l}}==
<langsyntaxhighlight lang="11l">print(‘the three truths’.count(‘th’))
print(‘ababababab’.count(‘abab’))</langsyntaxhighlight>
 
{{out}}
Line 37:
=={{header|360 Assembly}}==
The program uses two ASSIST macros (XDECO,XPRNT) to keep the code as short as possible.
<langsyntaxhighlight lang="360asm">* Count occurrences of a substring 05/07/2016
COUNTSTR CSECT
USING COUNTSTR,R13 base register
Line 102:
* ---- -------------------------------------------------------
YREGS
END COUNTSTR</langsyntaxhighlight>
{{out}}
<pre>
Line 115:
<code>DE</code>.
 
<langsyntaxhighlight lang="8080asm"> org 100h
jmp demo
;;; Count non-overlapping substrings (BC) in string (HL)
Line 170:
sub2: db 'abab',0 ; result should be 2
str3: db 'cat',0
sub3: db 'dog',0 ; result should be 0</langsyntaxhighlight>
 
{{out}}
Line 177:
 
=={{header|8086 Assembly}}==
<langsyntaxhighlight lang="asm"> cpu 8086
org 100h
section .text
Line 242:
.sub2: db 'abab',0 ; result should be 2
.str3: db 'cat',0
.sub3: db 'dog',0 ; result should be 0</langsyntaxhighlight>
 
{{out}}
Line 249:
 
=={{header|Action!}}==
<langsyntaxhighlight Actionlang="action!">BYTE FUNC CountSubstring(CHAR ARRAY s,sub)
BYTE i,j,res,found
 
Line 285:
Test("11111111","11")
Test("abcdefg","123")
RETURN</langsyntaxhighlight>
{{out}}
[https://gitlab.com/amarok8bit/action-rosetta-code/-/raw/master/images/Count_occurrences_of_a_substring.png Screenshot from Atari 8-bit computer]
Line 296:
 
=={{header|Ada}}==
<langsyntaxhighlight Adalang="ada">with Ada.Strings.Fixed, Ada.Integer_Text_IO;
 
procedure Substrings is
Line 304:
Ada.Integer_Text_IO.Put (Ada.Strings.Fixed.Count (Source => "ababababab",
Pattern => "abab"));
end Substrings;</langsyntaxhighlight>
 
{{out}}
Line 314:
{{wont work with|ELLA ALGOL 68|Any (with appropriate job cards) - tested with release [http://sourceforge.net/projects/algol68/files/algol68toc/algol68toc-1.8.8d/algol68toc-1.8-8d.fc9.i386.rpm/download 1.8-8d] - due to extensive use of '''format'''[ted] ''transput''.}}
Algol68 has no build in function to do this task, hence the next to create a ''count string in string'' routine.
<langsyntaxhighlight lang="algol68">#!/usr/local/bin/a68g --script #
 
PROC count string in string = (STRING needle, haystack)INT: (
Line 330:
count string in string("a*b", "abaabba*bbaba*bbab"), # expect 2 #
$l$
))</langsyntaxhighlight>
 
<pre>
Line 338:
=={{header|Apex}}==
Apex example for 'Count occurrences of a substring'.
<syntaxhighlight lang="apex">
<lang Apex>
String substr = 'ABC';
String str = 'ABCZZZABCYABCABCXXABC';
Line 350:
}
System.debug('Count String : '+count);
</syntaxhighlight>
</lang>
 
<pre>
Line 359:
{{works with|Dyalog APL}}
 
<langsyntaxhighlight lang="apl">csubs←{0=x←⊃⍸⍺⍷⍵:0 ⋄ 1+⍺∇(¯1+x+⍴⍺)↓⍵}</langsyntaxhighlight>
 
{{out}}
Line 375:
Here we use a generic ''evalOSA(language, code)'' function to apply a JavaScript for Automation regex to a pair of AppleScript strings, using OSAKit.
 
<langsyntaxhighlight AppleScriptlang="applescript">use framework "OSAKit"
 
on run
Line 403:
return oError's NSLocalizedDescription as text
end evalOSA</langsyntaxhighlight>
 
{{out}}
Line 412:
The above assertions notwithstanding, it's always been possible to use AppleScript's text item delimiters for this purpose with its native strings, except that the TIDs have only observed the current considering/ignoring state with the 'unicode text' class, which was introduced around Mac OS X 10.4 and became AppleScript's only native text class with the introduction of AppleScript 2.0 in Mac OS X 10.5.
 
<langsyntaxhighlight lang="applescript">on countSubstring(theString, theSubstring)
set astid to AppleScript's text item delimiters
set AppleScript's text item delimiters to theSubstring
Line 421:
end countSubstring
 
{countSubstring("the three truths", "th"), countSubstring("ababababab", "abab")}</langsyntaxhighlight>
 
{{Out}}
<syntaxhighlight lang ="applescript">{3, 2}</langsyntaxhighlight>
 
=={{header|Arturo}}==
 
<langsyntaxhighlight lang="rebol">countOccurrences: function [str, substr]-> size match str substr
 
loop [["the three truths" "th"] ["ababababab" "abab"]] 'pair ->
Line 434:
~"occurrences of '|last pair|' in '|first pair|':"
countOccurrences first pair last pair
]</langsyntaxhighlight>
 
{{out}}
Line 445:
AutoHotkey has a rather unconventional method which outperforms this.
StringReplace sets the number of replaced strings to ErrorLevel.
<langsyntaxhighlight AutoHotkeylang="autohotkey">MsgBox % countSubstring("the three truths","th") ; 3
MsgBox % countSubstring("ababababab","abab") ; 2
 
Line 451:
StringReplace, junk, fullstring, %substring%, , UseErrorLevel
return errorlevel
}</langsyntaxhighlight>
 
=={{header|AWK}}==
 
<syntaxhighlight lang="awk">#
<lang AWK>#
# countsubstring(string, pattern)
# Returns number of occurrences of pattern in string
Line 484:
print countsubstring_regex("[do&d~run?d!run&>run&]", "run[&]")
print countsubstring("the three truths","th")
}</langsyntaxhighlight>
{{out}}
<pre>$ awk -f countsubstring.awk
Line 493:
 
=={{header|BaCon}}==
<langsyntaxhighlight lang="qbasic">FUNCTION Uniq_Tally(text$, part$)
LOCAL x
WHILE TALLY(text$, part$)
Line 503:
 
PRINT "the three truths - th: ", Uniq_Tally("the three truths", "th")
PRINT "ababababab - abab: ", Uniq_Tally("ababababab", "abab")</langsyntaxhighlight>
{{out}}
<pre>
Line 515:
In FreeBASIC, this needs to be compiled with <code>-lang qb</code> or <code>-lang fblite</code>.
 
<langsyntaxhighlight lang="qbasic">DECLARE FUNCTION countSubstring& (where AS STRING, what AS STRING)
 
PRINT "the three truths, th:", countSubstring&("the three truths", "th")
Line 529:
LOOP
countSubstring = c
END FUNCTION</langsyntaxhighlight>
 
{{out}}
Line 538:
 
==={{header|Applesoft BASIC}}===
<langsyntaxhighlight ApplesoftBasiclang="applesoftbasic">10 F$ = "TH"
20 S$ = "THE THREE TRUTHS"
30 GOSUB 100"COUNT SUBSTRING
Line 557:
170 IF F$ = MID$(S$, I, F) THEN R = R + 1 : I = I + F - 1
180 NEXT I
190 RETURN</langsyntaxhighlight>
 
==={{header|IS-BASIC}}===
<langsyntaxhighlight ISlang="is-BASICbasic">100 INPUT PROMPT "String: ":TXT$
110 INPUT PROMPT "Substring: ":SUB$
120 PRINT COUNT(LCASE$(TXT$),LCASE$(SUB$))
Line 570:
180 LOOP UNTIL PO=0
190 LET COUNT=N
200 END DEF</langsyntaxhighlight>
 
==={{header|Sinclair ZX81 BASIC}}===
Works with 1k of RAM.
<langsyntaxhighlight lang="basic"> 10 LET S$="THE THREE TRUTHS"
20 LET U$="TH"
30 GOSUB 100
Line 590:
150 LET N=N+1
160 LET I=I+LEN U$
170 GOTO 130</langsyntaxhighlight>
 
==={{header|True BASIC}}===
{{trans|QBasic}}
<langsyntaxhighlight lang="qbasic">FUNCTION countsubstring(where$, what$)
LET c = 0
LET s = 1-LEN(what$)
Line 607:
PRINT "the three truths, th:", countSubstring("the three truths", "th")
PRINT "ababababab, abab:", countSubstring("ababababab", "abab")
END</langsyntaxhighlight>
 
==={{header|BASIC256}}===
{{trans|Run BASIC}}
<langsyntaxhighlight lang="freebasic">print countSubstring("the three truths","th")
print countSubstring("ababababab","abab")
end
Line 621:
i = instr(s$,find$,i) + length(find$)
end while
end function</langsyntaxhighlight>
{{out}}
<pre>Igual que la entrada de Run BASIC.</pre>
Line 627:
==={{header|Yabasic}}===
{{trans|Run BASIC}}
<langsyntaxhighlight lang="yabasic">print countSubstring("the three truths","th")
print countSubstring("ababababab","abab")
end
Line 639:
end while
return countSubstring
end sub</langsyntaxhighlight>
{{out}}
<pre>Igual que la entrada de Run BASIC.</pre>
Line 645:
 
=={{header|Batch File}}==
<langsyntaxhighlight lang="dos">@echo off
setlocal enabledelayedexpansion
 
Line 665:
set input=!trimmed!
set /a cnt+=1
goto count_loop</langsyntaxhighlight>
{{Out}}
<pre>3
Line 671:
 
=={{header|BBC BASIC}}==
<langsyntaxhighlight lang="bbcbasic"> tst$ = "the three truths"
sub$ = "th"
PRINT ; FNcountSubstring(tst$, sub$) " """ sub$ """ in """ tst$ """"
Line 687:
UNTIL I% = 0
= N%
</syntaxhighlight>
</lang>
{{out}}
<pre>3 "th" in "the three truths"
Line 693:
 
=={{header|BCPL}}==
<langsyntaxhighlight lang="bcpl">get "libhdr"
 
let countsubstr(str, match) = valof
Line 721:
show("ababababab", "abab")
show("cat", "dog")
$)</langsyntaxhighlight>
{{out}}
<pre>"th" in "the three truths": 3
Line 729:
=={{header|BQN}}==
<code>/𝕨⍷𝕩</code> finds locations of substrings, rest of the function suppresses overlapping substrings.
<langsyntaxhighlight lang="bqn">Find←{i←/𝕨⍷𝕩, i/˜i≥»0≤◶⟨⊣,(≠𝕨)+⊢⟩`i}
 
•Show "abab" Find "ababababab"
•Show "th" Find "the three truths"</langsyntaxhighlight>
<syntaxhighlight lang="text">2
3</langsyntaxhighlight>
 
Using strings.bqn from bqn-libs, another solution is <code>Find←+´Locate</code>, since <code>Locate</code> performs a non-overlapping search.
 
=={{header|Bracmat}}==
<langsyntaxhighlight lang="bracmat"> ( count-substring
= n S s p
. 0:?n:?p
Line 754:
& out$(count-substring$("the three truths".th))
& out$(count-substring$(ababababab.abab))
& ;</langsyntaxhighlight>
{{out}}
<pre>3
Line 760:
 
=={{header|C}}==
<langsyntaxhighlight Clang="c">#include <stdio.h>
#include <string.h>
 
Line 781:
printf("not: %d\n", match("abababababa", "aba", 0));
return 0;
}</langsyntaxhighlight>
 
Alternate version:
<langsyntaxhighlight lang="c">#include <stdio.h>
#include <string.h>
 
Line 805:
 
return 0;
}</langsyntaxhighlight>
{{out}}
<pre>
Line 814:
 
=={{header|C sharp|C#}}==
<langsyntaxhighlight lang="c sharp">using System;
 
class SubStringTestClass
Line 839:
return count;
}
}</langsyntaxhighlight>
 
Using C# 6.0's expression-bodied member, null-conditional operator, and coalesce operator features:
 
<langsyntaxhighlight lang="c sharp">using System;
class SubStringTestClass
{
public static int CountSubStrings(this string testString, string testSubstring) =>
testString?.Split(new [] { testSubstring }, StringSplitOptions.None)?.Length - 1 ?? 0;
}</langsyntaxhighlight>
 
=={{header|C++}}==
<langsyntaxhighlight lang="cpp">#include <iostream>
#include <string>
 
Line 874:
 
return 0;
}</langsyntaxhighlight>
{{out}}
<pre>
Line 884:
=={{header|Clojure}}==
Use a sequence of regexp matches to count occurrences.
<langsyntaxhighlight lang="clojure">
(defn re-quote
"Produces a string that can be used to create a Pattern
Line 895:
(defn count-substring [txt sub]
(count (re-seq (re-pattern (re-quote sub)) txt)))
</syntaxhighlight>
</lang>
 
Use the trick of blank replacement and maths to count occurrences.
<langsyntaxhighlight lang="clojure">
(defn count-substring1 [txt sub]
(/ (- (count txt) (count (.replaceAll txt sub "")))
(count sub)))
</syntaxhighlight>
</lang>
 
A Java 8 stream-based solution, which should avoid creation of temporary strings
(though it will produce temporary MatchResult instances).
<langsyntaxhighlight lang="clojure">
(defn count-substring2 [txt sub]
(-> sub
Line 914:
(.results)
(.count)))
</syntaxhighlight>
</lang>
 
=={{header|COBOL}}==
<code>INSPECT</code> can be used for this task without having to create a function.
<langsyntaxhighlight lang="cobol"> IDENTIFICATION DIVISION.
PROGRAM-ID. testing.
 
Line 939:
 
GOBACK
.</langsyntaxhighlight>
 
{{out}}
Line 949:
 
=={{header|CoffeeScript}}==
<langsyntaxhighlight lang="coffeescript">
countSubstring = (str, substr) ->
n = 0
Line 960:
console.log countSubstring "the three truths", "th"
console.log countSubstring "ababababab", "abab"
</syntaxhighlight>
</lang>
 
=={{header|Common Lisp}}==
<langsyntaxhighlight lang="lisp">(defun count-sub (str pat)
(loop with z = 0 with s = 0 while s do
(when (setf s (search pat str :start2 s))
Line 970:
 
(count-sub "ababa" "ab") ; 2
(count-sub "ababa" "aba") ; 1</langsyntaxhighlight>
 
=={{header|Cowgol}}==
<langsyntaxhighlight lang="cowgol">include "cowgol.coh";
 
sub countSubstring(str: [uint8], match: [uint8]): (count: uint8) is
Line 999:
print_nl();
print_i8(countSubstring("cat","dog")); # should print 0
print_nl();</langsyntaxhighlight>
 
{{out}}
Line 1,008:
 
=={{header|D}}==
<langsyntaxhighlight lang="d">void main() {
import std.stdio, std.algorithm;
 
"the three truths".count("th").writeln;
"ababababab".count("abab").writeln;
}</langsyntaxhighlight>
{{out}}
<pre>3
Line 1,019:
 
=={{header|Delphi}}==
<langsyntaxhighlight Delphilang="delphi">program OccurrencesOfASubstring;
 
{$APPTYPE CONSOLE}
Line 1,041:
Writeln(CountSubstring('the three truths', 'th'));
Writeln(CountSubstring('ababababab', 'abab'));
end.</langsyntaxhighlight>
 
=={{header|Dyalect}}==
 
<langsyntaxhighlight lang="dyalect">func countSubstring(str, val) {
var idx = 0
var count = 0
Line 1,060:
 
print(countSubstring("the three truths", "th"))
print(countSubstring("ababababab", "abab"))</langsyntaxhighlight>
 
{{out}}
Line 1,068:
 
=={{header|Déjà Vu}}==
<langsyntaxhighlight lang="dejavu">!. count "the three truths" "th"
!. count "ababababab" "abab"</langsyntaxhighlight>
{{out}}
<pre>3
Line 1,075:
 
=={{header|EchoLisp}}==
<langsyntaxhighlight lang="scheme">
;; from Racket
(define count-substring
Line 1,084:
(count-substring "/ .e/" "Longtemps je me suis couché de bonne heure") ;; regexp
→ 4
</syntaxhighlight>
</lang>
 
=={{header|EGL}}==
{{works with|EDT}}
The "remove and count the difference" and "manual loop" methods. Implementation includes protection from empty source and search strings.
<langsyntaxhighlight EGLlang="egl">program CountStrings
function main()
Line 1,140:
 
end
</syntaxhighlight>
</lang>
{{out}}
<pre>Remove and Count:
Line 1,162:
 
=={{header|Eiffel}}==
<langsyntaxhighlight lang="eiffel">
class
APPLICATION
Line 1,198:
search_for:STRING = "abab"
end
</syntaxhighlight>
</lang>
 
=={{header|Elixir}}==
<langsyntaxhighlight lang="elixir">countSubstring = fn(_, "") -> 0
(str, sub) -> length(String.split(str, sub)) - 1 end
 
Line 1,215:
Enum.each(data, fn{str, sub} ->
IO.puts countSubstring.(str, sub)
end)</langsyntaxhighlight>
 
{{out}}
Line 1,230:
 
=={{header|Erlang}}==
<syntaxhighlight lang="erlang">
<lang Erlang>
%% Count non-overlapping substrings in Erlang for the rosetta code wiki.
%% Implemented by J.W. Luiten
Line 1,258:
main(String, Sub) ->
match(String, Sub, Sub, 0).</langsyntaxhighlight>
Command: <langsyntaxhighlight Erlanglang="erlang">substrings:main("ababababab","abab").</langsyntaxhighlight>
{{out}}
<pre>
Line 1,266:
 
Alternative using built in functions:
<syntaxhighlight lang="erlang">
<lang Erlang>
main( String, Sub ) -> erlang:length( binary:split(binary:list_to_bin(String), binary:list_to_bin(Sub), [global]) ) - 1.
</syntaxhighlight>
</lang>
 
=={{header|Euphoria}}==
<langsyntaxhighlight lang="euphoria">function countSubstring(sequence s, sequence sub)
integer from,count
count = 0
Line 1,287:
 
? countSubstring("the three truths","th")
? countSubstring("ababababab","abab")</langsyntaxhighlight>
 
{{out}}
Line 1,296:
=={{header|F_Sharp|F#}}==
"Remove and count the difference" method, as shown by J, Java, ...
<langsyntaxhighlight Fsharplang="fsharp">open System
 
let countSubstring (where :string) (what : string) =
Line 1,311:
show "ababababab" "abab"
show "abc" ""
0</langsyntaxhighlight>
<pre>countSubstring("the three truths", "th") = 3
countSubstring("ababababab", "abab") = 2
Line 1,317:
 
=={{header|Factor}}==
<langsyntaxhighlight lang="factor">USING: math sequences splitting ;
: occurences ( seq subseq -- n ) split-subseq length 1 - ;</langsyntaxhighlight>
 
=={{header|Forth}}==
<langsyntaxhighlight lang="forth">: str-count ( s1 len s2 len -- n )
2swap 0 >r
begin 2over search
Line 1,329:
 
s" the three truths" s" th" str-count . \ 3
s" ababababab" s" abab" str-count . \ 2</langsyntaxhighlight>
 
=={{header|Fortran}}==
{{works with|Fortran|90 and later}}
<langsyntaxhighlight lang="fortran">program Example
implicit none
integer :: n
Line 1,360:
end do
end function
end program</langsyntaxhighlight>
{{out}}
<pre>3
Line 1,367:
 
=={{header|FreeBASIC}}==
<langsyntaxhighlight lang="freebasic">' FB 1.05.0 Win64
 
Function countSubstring(s As String, search As String) As Integer
Line 1,386:
Print
Print "Press any key to quit"
Sleep</langsyntaxhighlight>
 
{{out}}
Line 1,396:
 
=={{header|FunL}}==
<langsyntaxhighlight lang="funl">import util.Regex
 
def countSubstring( str, substr ) = Regex( substr ).findAllMatchIn( str ).length()
 
println( countSubstring("the three truths", "th") )
println( countSubstring("ababababab", "abab") )</langsyntaxhighlight>
 
{{out}}
Line 1,420:
=={{header|Go}}==
Using strings.Count() method:
<langsyntaxhighlight lang="go">package main
import (
"fmt"
Line 1,429:
fmt.Println(strings.Count("the three truths", "th")) // says: 3
fmt.Println(strings.Count("ababababab", "abab")) // says: 2
}</langsyntaxhighlight>
 
=={{header|Groovy}}==
Solution, uses the Groovy "find" operator (=~), and the Groovy-extended Matcher property "count":
<langsyntaxhighlight lang="groovy">println (('the three truths' =~ /th/).count)
println (('ababababab' =~ /abab/).count)
println (('abaabba*bbaba*bbab' =~ /a*b/).count)
println (('abaabba*bbaba*bbab' =~ /a\*b/).count)</langsyntaxhighlight>
 
{{out}}
Line 1,446:
=={{header|Haskell}}==
=== Text-based solution ===
<langsyntaxhighlight lang="haskell">import Data.Text hiding (length)
 
-- Return the number of non-overlapping occurrences of sub in str.
Line 1,454:
print $ countSubStrs "the three truths" "th"
print $ countSubStrs "ababababab" "abab"
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 1,462:
 
Alternatively, in a language built around currying, it might make more sense to reverse the suggested order of arguments.
<langsyntaxhighlight lang="haskell">{-# LANGUAGE OverloadedStrings #-}
 
import Data.Text hiding (length)
Line 1,481:
"abelian absurdity",
"babel kebab"
]</langsyntaxhighlight>
{{Out}}
<pre>[5,2,2]</pre>
Line 1,488:
Even though list-based strings are not "the right" way of representing texts, the problem of counting subsequences in a list is generally useful.
 
<langsyntaxhighlight Haskelllang="haskell">count :: Eq a => [a] -> [a] -> Int
count [] = error "empty substring"
count sub = go
Line 1,496:
scan [] xs = 1 + go xs
scan (x:xs) (y:ys) | x == y = scan xs ys
| otherwise = go ys</langsyntaxhighlight>
{{Out}}
<pre>λ> count "th" "the three truths"
Line 1,510:
The following solution is almost two times faster than the previous one.
 
<langsyntaxhighlight Haskelllang="haskell">import Data.List (tails, stripPrefix)
import Data.Maybe (catMaybes)
 
count :: Eq a => [a] -> [a] -> Int
count sub = length . catMaybes . map (stripPrefix sub) . tails</langsyntaxhighlight>
 
=={{header|Icon}} and {{header|Unicon}}==
<langsyntaxhighlight Iconlang="icon">procedure main()
every A := ![ ["the three truths","th"], ["ababababab","abab"] ] do
write("The string ",image(A[2])," occurs as a non-overlapping substring ",
Line 1,530:
}
return c
end</langsyntaxhighlight>
 
{{out}}
Line 1,538:
=={{header|J}}==
 
<langsyntaxhighlight lang="j">require'strings'
countss=: #@] %~ #@[ - [ #@rplc '';~]</langsyntaxhighlight>
 
In other words: find length of original string, replace the string to be counted with the empty string, find the difference in lengths and divide by the length of the string to be counted.
Line 1,545:
Example use:
 
<langsyntaxhighlight lang="j"> 'the three truths' countss 'th'
3
'ababababab' countss 'abab'
2</langsyntaxhighlight>
 
=={{header|Java}}==
{{works with|Java|1.5+}}
The "remove and count the difference" method:
<langsyntaxhighlight lang="java">public class CountSubstring {
public static int countSubstring(String subStr, String str){
return (str.length() - str.replace(subStr, "").length()) / subStr.length();
Line 1,563:
System.out.println(countSubstring("a*b", "abaabba*bbaba*bbab"));
}
}</langsyntaxhighlight>
{{out}}
<pre>3
Line 1,571:
{{works with|Java|1.5+}}
The "split and count" method:
<langsyntaxhighlight lang="java">import java.util.regex.Pattern;
 
public class CountSubstring {
Line 1,585:
System.out.println(countSubstring("a*b", "abaabba*bbaba*bbab"));
}
}</langsyntaxhighlight>
{{out}}
<pre>3
Line 1,592:
 
Manual looping
<langsyntaxhighlight lang="java">public class CountSubstring {
public static int countSubstring(String subStr, String str){
int count = 0;
Line 1,606:
System.out.println(countSubstring("a*b", "abaabba*bbaba*bbab"));
}
}</langsyntaxhighlight>
{{out}}
<pre>3
Line 1,614:
=={{header|JavaScript}}==
Using regexes:
<langsyntaxhighlight lang="javascript">function countSubstring(str, subStr) {
var matches = str.match(new RegExp(subStr, "g"));
return matches ? matches.length : 0;
}</langsyntaxhighlight>
 
Using 'split' and ES6 notation:
<langsyntaxhighlight lang="javascript">const countSubString = (str, subStr) => str.split(subStr).length - 1;
</syntaxhighlight>
</lang>
 
=={{header|jq}}==
Using regexes (available in jq versions after June 19, 2014):
<syntaxhighlight lang="jq">
<lang jq>
def countSubstring(sub):
[match(sub; "g")] | length;</langsyntaxhighlight>Example:<syntaxhighlight lang ="jq">
"the three truths" | countSubstring("th")</langsyntaxhighlight>
 
=={{header|Julia}}==
Line 1,639:
 
'''Main'''
<syntaxhighlight lang="julia">
<lang Julia>
ts = ["the three truths", "ababababab"]
tsub = ["th", "abab"]
Line 1,654:
println(length(matchall(Regex(tsub[i]), ts[i], true)))
end
</syntaxhighlight>
</lang>
 
{{out}}
Line 1,669:
=={{header|K}}==
The dyadic verb _ss gives the positions of substring y in string x.
<langsyntaxhighlight Klang="k"> "the three truths" _ss "th"
0 4 13
 
Line 1,680:
#"ababababab" _ss "abab"
2
</syntaxhighlight>
</lang>
 
=={{header|Klingphix}}==
<langsyntaxhighlight Klingphixlang="klingphix">include ..\Utilitys.tlhy
 
:count %s !s
Line 1,695:
"ababababab" "abab" count ?
 
" " input</langsyntaxhighlight>
Other solution
<langsyntaxhighlight Klingphixlang="klingphix">include ..\Utilitys.tlhy
 
:count "- " convert "-" 2 tolist split len nip ;
Line 1,704:
"ababababab" "abab" count ?
 
" " input</langsyntaxhighlight>
{{out}}
<pre>3
Line 1,710:
 
=={{header|Kotlin}}==
<langsyntaxhighlight lang="scala">// version 1.0.6
 
fun countSubstring(s: String, sub: String): Int = s.split(sub).size - 1
Line 1,718:
println(countSubstring("ababababab","abab"))
println(countSubstring("",""))
}</langsyntaxhighlight>
 
{{out}}
Line 1,728:
 
=={{header|Lambdatalk}}==
<langsyntaxhighlight lang="scheme">
{def countSubstring
{def countSubstring.r
Line 1,752:
{countSubstring aba ababa}
-> 1
</syntaxhighlight>
</lang>
 
=={{header|langur}}==
<langsyntaxhighlight lang="langur">writeln len indices q(th), q(the three truths)
writeln len indices q(abab), q(ababababab)</langsyntaxhighlight>
 
{{out}}
Line 1,763:
 
=={{header|Lasso}}==
<langsyntaxhighlight Lassolang="lasso">define countSubstring(str::string, substr::string)::integer => {
local(i = 1, foundpos = -1, found = 0)
while(#i < #str->size && #foundpos != 0) => {
Line 1,788:
//3
countSubstring_bothways('ababababab','abab')
//2</langsyntaxhighlight>
 
=={{header|Liberty BASIC}}==
<syntaxhighlight lang="lb">
<lang lb>
print countSubstring( "the three truths", "th")
print countSubstring( "ababababab", "abab")
Line 1,805:
countSubstring =c
end function
</syntaxhighlight>
</lang>
 
=={{header|Logtalk}}==
Using atoms for string representation:
<langsyntaxhighlight lang="logtalk">
:- object(counting).
 
Line 1,827:
 
:- end_object.
</syntaxhighlight>
</lang>
{{out}}
<langsyntaxhighlight lang="text">
| ?- counting::count('the three truths', th, N).
N = 3
Line 1,837:
N = 2
yes
</syntaxhighlight>
</lang>
 
=={{header|Lua}}==
Solution 1:
 
<langsyntaxhighlight Lualang="lua">function countSubstring(s1, s2)
return select(2, s1:gsub(s2, ""))
end
 
print(countSubstring("the three truths", "th"))
print(countSubstring("ababababab", "abab"))</langsyntaxhighlight>
<pre>3
2</pre>
Line 1,854:
Solution 2:
 
<langsyntaxhighlight Lualang="lua">function countSubstring(s1, s2)
local count = 0
for eachMatch in s1:gmatch(s2) do
Line 1,863:
 
print(countSubstring("the three truths", "th"))
print(countSubstring("ababababab", "abab"))</langsyntaxhighlight>
<pre>3
2</pre>
 
=={{header|Maple}}==
<syntaxhighlight lang="maple">
<lang Maple>
f:=proc(s::string,c::string,count::nonnegint) local n;
n:=StringTools:-Search(c,s);
Line 1,878:
 
f("ababababab","abab",0);
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 1,887:
 
=={{header|Mathematica}} / {{header|Wolfram Language}}==
<langsyntaxhighlight Mathematicalang="mathematica">StringPosition["the three truths","th",Overlaps->False]//Length
3
StringPosition["ababababab","abab",Overlaps->False]//Length
2</langsyntaxhighlight>
 
=={{header|MATLAB}} / {{header|Octave}}==
 
<langsyntaxhighlight Matlablang="matlab"> % Count occurrences of a substring without overlap
length(findstr("ababababab","abab",0))
length(findstr("the three truths","th",0))
 
% Count occurrences of a substring with overlap
length(findstr("ababababab","abab",1)) </langsyntaxhighlight>
 
{{out}}
Line 1,914:
 
=={{header|Maxima}}==
<langsyntaxhighlight lang="maxima">scount(e, s) := block(
[n: 0, k: 1],
while integerp(k: ssearch(e, s, k)) do (n: n + 1, k: k + 1),
Line 1,921:
 
scount("na", "banana");
2</langsyntaxhighlight>
 
=={{header|MiniScript}}==
<langsyntaxhighlight MiniScriptlang="miniscript">string.count = function(s)
return self.split(s).len - 1
end function
 
print "the three truths".count("th")
print "ababababab".count("abab")</langsyntaxhighlight>
{{out}}
<pre>
Line 1,937:
 
=={{header|Mirah}}==
<langsyntaxhighlight lang="mirah">import java.util.regex.Pattern
import java.util.regex.Matcher
 
Line 1,975:
puts count_substring3("abab", "ababababab") # ==> 2
puts count_substring3("a*b", "abaabba*bbaba*bbab") # ==> 2
</syntaxhighlight>
</lang>
 
=={{header|Nanoquery}}==
{{trans|Java}}
<langsyntaxhighlight Nanoquerylang="nanoquery">def countSubstring(str, subStr)
return int((len(str) - len(str.replace(subStr, ""))) / len(subStr))
end</langsyntaxhighlight>
 
=={{header|Nemerle}}==
{{trans|F#}}
<langsyntaxhighlight Nemerlelang="nemerle">using System.Console;
 
module CountSubStrings
Line 2,007:
WriteLine($"$target2 occurs $(text2.CountSubStrings(target2)) times in $text2");
}
}</langsyntaxhighlight>
{{out}}
<pre>th occurs 3 times in the three truths
Line 2,015:
NetRexx provides the <tt>''string''.countstr(''needle'')</tt> built-in function:
 
<langsyntaxhighlight NetRexxlang="netrexx">/* NetRexx */
options replace format comments java crossref symbols nobinary
 
Line 2,037:
return
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 2,046:
=={{header|NewLISP}}==
 
<langsyntaxhighlight NewLISPlang="newlisp">; file: stringcount.lsp
; url: http://rosettacode.org/wiki/Count_occurrences_of_a_substring
; author: oofoe 2012-01-29
Line 2,088:
)
 
(exit)</langsyntaxhighlight>
 
{{out}}
Line 2,101:
 
=={{header|Nim}}==
<langsyntaxhighlight lang="nim">import strutils
 
proc count(s, sub: string): int =
Line 2,114:
echo count("the three truths","th")
 
echo count("ababababab","abab")</langsyntaxhighlight>
{{out}}
<pre>3
Line 2,121:
=={{header|Objective-C}}==
The "split and count" method:
<langsyntaxhighlight lang="objc">@interface NSString (CountSubstrings)
- (NSUInteger)occurrencesOfSubstring:(NSString *)subStr;
@end
Line 2,140:
}
return 0;
}</langsyntaxhighlight>
{{out}}
<pre>3
Line 2,148:
 
The "remove and count the difference" method:
<langsyntaxhighlight lang="objc">@interface NSString (CountSubstrings)
- (NSUInteger)occurrencesOfSubstring:(NSString *)subStr;
@end
Line 2,167:
}
return 0;
}</langsyntaxhighlight>
{{out}}
<pre>3
Line 2,175:
 
Manual looping:
<langsyntaxhighlight lang="objc">@interface NSString (CountSubstrings)
- (NSUInteger)occurrencesOfSubstring:(NSString *)subStr;
@end
Line 2,200:
}
return 0;
}</langsyntaxhighlight>
{{out}}
<pre>3
Line 2,208:
=={{header|OCaml}}==
 
<langsyntaxhighlight lang="ocaml">let count_substring str sub =
let sub_len = String.length sub in
let len_diff = (String.length str) - sub_len
Line 2,224:
Printf.printf "count 1: %d\n" (count_substring "the three truth" "th");
Printf.printf "count 2: %d\n" (count_substring "ababababab" "abab");
;;</langsyntaxhighlight>
 
=={{header|Oforth}}==
 
<syntaxhighlight lang="oforth">
<lang Oforth>
: countSubString(s, sub)
0 1 while(sub swap s indexOfAllFrom dup notNull) [ sub size + 1 under+ ]
drop ;</langsyntaxhighlight>
 
{{out}}
Line 2,242:
 
=={{header|ooRexx}}==
<syntaxhighlight lang="oorexx">
<lang ooRexx>
bag="the three truths"
x="th"
Line 2,255:
x="abab"
say left(bag,30) left(x,15) 'found' bag~caselesscountstr(x)
</syntaxhighlight>
</lang>
{{out}}
<pre style="height:10ex;overflow:scroll">
Line 2,264:
 
=={{header|PARI/GP}}==
<langsyntaxhighlight lang="parigp">subvec(v,u)={
my(i=1,s);
while(i+#u<=#v,
Line 2,277:
substr(s1,s2)=subvec(Vec(s1),Vec(s2));
substr("the three truths","th")
substr("ababababab","abab")</langsyntaxhighlight>
{{out}}
<pre>%1 = 3
Line 2,286:
 
=={{header|Perl}}==
<langsyntaxhighlight lang="perl">sub countSubstring {
my $str = shift;
my $sub = quotemeta(shift);
Line 2,295:
print countSubstring("the three truths","th"), "\n"; # prints "3"
print countSubstring("ababababab","abab"), "\n"; # prints "2"</langsyntaxhighlight>
 
=={{header|Phix}}==
<!--<langsyntaxhighlight Phixlang="phix">(phixonline)-->
<span style="color: #004080;">sequence</span> <span style="color: #000000;">tests</span> <span style="color: #0000FF;">=</span> <span style="color: #0000FF;">{{</span><span style="color: #008000;">"the three truths"</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"th"</span><span style="color: #0000FF;">},</span>
<span style="color: #0000FF;">{</span><span style="color: #008000;">"ababababab"</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"abab"</span><span style="color: #0000FF;">},</span>
Line 2,319:
<span style="color: #7060A8;">printf</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"The string \"%s\" occurs as a non-overlapping substring %d times in \"%s\"\n"</span><span style="color: #0000FF;">,{</span><span style="color: #7060A8;">substring</span><span style="color: #0000FF;">,</span><span style="color: #000000;">count</span><span style="color: #0000FF;">,</span><span style="color: #000000;">test</span><span style="color: #0000FF;">})</span>
<span style="color: #008080;">end</span> <span style="color: #008080;">for</span>
<!--</langsyntaxhighlight>-->
{{out}}
<pre>
Line 2,331:
 
=={{header|PHP}}==
<langsyntaxhighlight lang="php"><?php
echo substr_count("the three truths", "th"), PHP_EOL; // prints "3"
echo substr_count("ababababab", "abab"), PHP_EOL; // prints "2"
</syntaxhighlight>
</lang>
 
=={{header|Picat}}==
Line 2,342:
 
===Recursion===
<langsyntaxhighlight Picatlang="picat">count_substrings_rec(S, SB) = C =>
count_rec(S,SB,0,C).
 
Line 2,351:
count_rec([T|Rest],SB,Count0,Count) :-
T != SB, % this character is not a substring
count_rec(Rest,SB,Count0,Count).</langsyntaxhighlight>
 
===Iterative===
Iterative version using find/4 (wrap with once/1 to avoid backtracking).
{{trans|Euphoria}}
<langsyntaxhighlight Picatlang="picat">count_substrings_find(S, SB) = C =>
SLen = S.len,
Count = 0,
Line 2,369:
)
end,
C = Count.</langsyntaxhighlight>
 
The time differences between these two versions are quite large which is shown in a benchmark of searching the substring "ab" in a string of 100 000 random characters from the set of "abcde":
Line 2,377:
 
=={{header|PicoLisp}}==
<langsyntaxhighlight PicoLisplang="picolisp">(de countSubstring (Str Sub)
(let (Cnt 0 H (chop Sub))
(for (S (chop Str) S (cdr S))
Line 2,383:
(inc 'Cnt)
(setq S (map prog2 H S)) ) )
Cnt ) )</langsyntaxhighlight>
Test:
<pre>: (countSubstring "the three truths" "th")
Line 2,392:
 
=={{header|Pike}}==
<syntaxhighlight lang="pike">
<lang Pike>
write("%d %d\n",
String.count("the three truths", "th"),
String.count("ababababab", "abab"));
</syntaxhighlight>
</lang>
{{Out}}
<pre>
Line 2,403:
 
=={{header|PL/I}}==
<langsyntaxhighlight lang="pli">cnt: procedure options (main);
declare (i, tally) fixed binary;
declare (text, key) character (100) varying;
Line 2,416:
end;
put skip list (tally);
end cnt;</langsyntaxhighlight>
 
Output for the two specified strings is as expected.
Line 2,427:
 
=={{header|PL/M}}==
<langsyntaxhighlight lang="plm">100H:
/* CP/M CALLS */
BDOS: PROCEDURE (FN, ARG); DECLARE FN BYTE, ARG ADDRESS; GO TO 5; END BDOS;
Line 2,475:
 
CALL EXIT;
EOF</langsyntaxhighlight>
{{out}}
<pre>3
Line 2,491:
Note that while this example is marked as working with PB/Win, the <code>PRINT</code> statement would need to be replaced with <code>MSGBOX</code>, or output to a file. (PB/Win does not support console output.)
 
<langsyntaxhighlight lang="powerbasic">FUNCTION PBMAIN () AS LONG
PRINT "the three truths, th:", TALLY("the three truths", "th")
PRINT "ababababab, abab:", TALLY("ababababab", "abab")
END FUNCTION</langsyntaxhighlight>
 
{{out}}
Line 2,503:
 
{{works with|PowerShell|4.0}}
<syntaxhighlight lang="powershell">
<lang PowerShell>
[regex]::Matches("the three truths", "th").count
</syntaxhighlight>
</lang>
<b>Output:</b>
<pre>
Line 2,511:
</pre>
 
<syntaxhighlight lang="powershell">
<lang PowerShell>
[regex]::Matches("ababababab","abab").count
</syntaxhighlight>
</lang>
<b>Output:</b>
<pre>
Line 2,525:
Using SWI-Prolog's string facilities (this solution is very similar to the Logtalk solution that uses sub_atom/5):
 
<langsyntaxhighlight lang="prolog">
 
count_substring(String, Sub, Total) :-
Line 2,543:
DropN is Before + Length,
sub_string(String, DropN, Remain, 0, Rest).
</syntaxhighlight>
</lang>
 
Usage:
<langsyntaxhighlight lang="prolog">
?- count_substring("the three truths","th",X).
X = 3.
Line 2,552:
?- count_substring("ababababab","abab",X).
X = 2.
</syntaxhighlight>
</lang>
 
=== version using DCG ===
 
{{works with|SWI-Prolog|7.6.4}}
<langsyntaxhighlight lang="prolog">
:- system:set_prolog_flag(double_quotes,chars) .
 
Line 2,591:
.
 
</syntaxhighlight>
</lang>
 
{{out}}
Line 2,614:
 
=={{header|PureBasic}}==
<langsyntaxhighlight PureBasiclang="purebasic">a = CountString("the three truths","th")
b = CountString("ababababab","abab")
; a = 3
; b = 2</langsyntaxhighlight>
 
=={{header|Python}}==
<langsyntaxhighlight lang="python">>>> "the three truths".count("th")
3
>>> "ababababab".count("abab")
2</langsyntaxhighlight>
 
=={{header|Quackery}}==
Line 2,629:
Quackery does not come equipped with a "find substring m within string n" function, but one is defined in The Book of Quackery, as a demonstration of creating a finite state machine in Quackery. It is reproduced here with permission.
 
<langsyntaxhighlight Quackerylang="quackery"> [ [] 95 times
[ i^ space +
join ] ] constant is alphabet ( --> $ )
Line 2,683:
else
[ swap buildfsm
usefsm ] ] is find$ ( $ $ --> n )</langsyntaxhighlight>
 
<code>find$</code> builds a finite state machine to search for m, (an O(m³) operation), then uses it to search in n with O(n). Rather than use <code>find$</code>, and repeatedly build the same fsm, we will define a word <code>findall$</code> which returns a nest (i.e. list) of positions of m within n. (It actually returns the positions of the end of the substring, relative to (for the first instance) the start of the string, or (for subsequent instances) the end of the previous instance of the substring.)
 
<langsyntaxhighlight Quackerylang="quackery"> [ over size 0 = iff
[ 2drop [] ] done
[] unrot
Line 2,700:
nip swap again ]
2drop drop ] is findall$ ( $ $ --> [ )
</syntaxhighlight>
</lang>
 
{{out}}
Line 2,719:
Finally we can use <code>findall$</code> to fulfil the task requirements.
 
<langsyntaxhighlight Quackerylang="quackery"> [ swap findall$ size ] is occurences ( $ $ --> n )
 
$ "the three truths" $ "th" occurences echo cr
$ "ababababab" $ "abab" occurences echo cr
</syntaxhighlight>
</lang>
 
{{out}}
Line 2,735:
The <code>fixed</code> parameter (and, in <code>stringr</code>, the function of the same name) is used to specify a search for a fixed string. Otherwise, the search pattern is interpreted as a POSIX regular expression. PCRE is also an option: use the <code>perl</code> parameter or function.
 
<langsyntaxhighlight lang="rsplus">count = function(haystack, needle)
{v = attr(gregexpr(needle, haystack, fixed = T)[[1]], "match.length")
if (identical(v, -1L)) 0 else length(v)}
 
print(count("hello", "l"))</langsyntaxhighlight>
 
{{libheader|stringr}}
 
<langsyntaxhighlight lang="rsplus">library(stringr)
print(str_count("hello", fixed("l")))</langsyntaxhighlight>
 
=={{header|Racket}}==
<langsyntaxhighlight lang="racket">
(define count-substring
(compose length regexp-match*))
</syntaxhighlight>
</lang>
<langsyntaxhighlight lang="racket">
> (count-substring "th" "the three truths")
3
> (count-substring "abab" "ababababab")
2
</syntaxhighlight>
</lang>
 
=={{header|Raku}}==
(formerly Perl 6)
<syntaxhighlight lang="raku" perl6line>sub count-substring($big, $little) { +$big.comb: / :r $little / }
say count-substring("the three truths", "th"); # 3
say count-substring("ababababab", "abab"); # 2
say count-substring(123123123, 12); # 3</langsyntaxhighlight>
The <tt>:r</tt> adverb makes the regex "ratchet forward" and skip any overlapping matches. <tt>.comb</tt> - when given a <tt>Regex</tt> as an argument - returns instances of that substring. Also, prefix <tt>+</tt> forces numeric context in Raku (it's a no-op in Perl&nbsp;5). For the built in listy types that is the same as calling <tt>.elems</tt> method. One other style point: we now tend to prefer hyphenated names over camelCase.
 
=={{header|Red}}==
<langsyntaxhighlight Redlang="red">Red []
 
count-occurrences: function [string substring] [
Line 2,780:
print [test-case-1 "-" count-occurrences test-case-1 "th"]
print [test-case-2 "-" count-occurrences test-case-2 "abab"]
</syntaxhighlight>
</lang>
{{out}}
<pre>the three truths - 3
Line 2,802:
::::* &nbsp; too many arguments
::::* &nbsp; if &nbsp; '''start''' &nbsp; is a positive integer (when specified)
<langsyntaxhighlight lang="rexx">/*REXX program counts the occurrences of a (non─overlapping) substring in a string. */
w=. /*max. width so far.*/
bag= 'the three truths' ; x= "th" ; call showResult
Line 2,830:
if x=='' then x= " (null)" /* " " " " */
say left(bag, w) left(x, w%2) center(countstr(bag, x), 5)
return</langsyntaxhighlight>
'''output''' &nbsp; when using the default (internal) inputs:
<pre>
Line 2,847:
 
=={{header|Ring}}==
<syntaxhighlight lang="ring">
<lang Ring>
aString = "Ring Welcome Ring to the Ring Ring Programming Ring Language Ring"
bString = "Ring"
Line 2,858:
cString = substr(cString,substr(cString,dString)+len(string(sum)))
end
return sum</langsyntaxhighlight>
 
Output:
Line 2,866:
 
=={{header|Ruby}}==
<langsyntaxhighlight lang="ruby">def countSubstrings str, subStr
str.scan(subStr).length
end
 
p countSubstrings "the three truths", "th" #=> 3
p countSubstrings "ababababab", "abab" #=> 2</langsyntaxhighlight>
 
String#scan returns an array of substrings, and Array#length (or Array#size) counts them.
 
=={{header|Run BASIC}}==
<langsyntaxhighlight lang="runbasic">print countSubstring("the three truths","th")
print countSubstring("ababababab","abab")
 
Line 2,884:
i = instr(s$,find$,i) + len(find$)
WEND
END FUNCTION</langsyntaxhighlight>
{{out}}
<pre>3
Line 2,890:
 
=={{header|Rust}}==
<langsyntaxhighlight lang="rust">
fn main() {
println!("{}","the three truths".matches("th").count());
println!("{}","ababababab".matches("abab").count());
}
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 2,904:
=={{header|Scala}}==
===Using Recursion===
<langsyntaxhighlight lang="scala">import scala.annotation.tailrec
def countSubstring(str1:String, str2:String):Int={
@tailrec def count(pos:Int, c:Int):Int={
Line 2,911:
}
count(0,0)
}</langsyntaxhighlight>
 
===Using Sliding===
<langsyntaxhighlight lang="scala">def countSubstring(str: String, sub: String): Int =
str.sliding(sub.length).count(_ == sub)</langsyntaxhighlight><br/>
 
===Using Regular Expressions===
<langsyntaxhighlight lang="scala">def countSubstring( str:String, substr:String ) = substr.r.findAllMatchIn(str).length</langsyntaxhighlight>
<br/>
<langsyntaxhighlight lang="scala">println(countSubstring("ababababab", "abab"))
println(countSubstring("the three truths", "th"))</langsyntaxhighlight>
{{out}}
<pre>2
Line 2,928:
=={{header|Scheme}}==
{{works with|Gauche Scheme}}
<langsyntaxhighlight Schemelang="scheme">gosh> (use gauche.lazy)
#<undef>
gosh> (length (lrxmatch "th" "the three truths"))
Line 2,934:
gosh> (length (lrxmatch "abab" "ababababab"))
2
</syntaxhighlight>
</lang>
 
=={{header|Seed7}}==
<langsyntaxhighlight lang="seed7">$ include "seed7_05.s7i";
 
const func integer: countSubstring (in string: stri, in string: searched) is func
Line 2,956:
writeln(countSubstring("the three truths", "th"));
writeln(countSubstring("ababababab", "abab"));
end func;</langsyntaxhighlight>
 
{{out}}
Line 2,966:
=={{header|SenseTalk}}==
'''Simply stated:'''
<langsyntaxhighlight lang="sensetalk">
put the number of occurrences of "th" in "the three truths" --> 3
put the number of occurrences of "abab" in "ababababab" -- > 2
</syntaxhighlight>
</lang>
'''User-created function:'''
<langsyntaxhighlight lang="sensetalk">
put countSubstring("aaaaa","a") // 5
put countSubstring("abababa","aba") // 2
Line 2,978:
return number of occurrences of subString in mainString
end countSubstring
</syntaxhighlight>
</lang>
 
=={{header|Sidef}}==
'''Built-in:'''
<langsyntaxhighlight lang="ruby">say "the three truths".count("th");
say "ababababab".count("abab");</langsyntaxhighlight>
 
'''User-created function:'''
<langsyntaxhighlight lang="ruby">func countSubstring(s, ss) {
var re = Regex.new(ss.escape, 'g'); # 'g' for global
var counter = 0;
Line 2,994:
 
say countSubstring("the three truths","th");
say countSubstring("ababababab","abab");</langsyntaxhighlight>
{{out}}
<pre>
Line 3,001:
</pre>
=={{header|Simula}}==
<langsyntaxhighlight lang="simula">BEGIN
INTEGER PROCEDURE COUNTSUBSTRING(T,TSUB); TEXT T,TSUB;
Line 3,020:
OUTINT(COUNTSUBSTRING("ABABABABAB", "ABAB"),0);
OUTIMAGE;
END.</langsyntaxhighlight>
{{out}}
<pre>
Line 3,029:
=={{header|Smalltalk}}==
{{works with|Smalltalk/X}}
<langsyntaxhighlight lang="smalltalk">Transcript showCR:('the three truths' occurrencesOfString:'th').
Transcript showCR:('ababababab' occurrencesOfString:'abab')</langsyntaxhighlight>
{{out}}
<pre>3
Line 3,036:
 
=={{header|SNOBOL4}}==
<syntaxhighlight lang="snobol4">
<lang SNOBOL4>
DEFINE("countSubstring(t,s)")
 
Line 3,048:
3
2
</syntaxhighlight>
</lang>
 
=={{header|Standard ML}}==
 
<langsyntaxhighlight lang="sml">fun count_substrings (str, sub) =
let
fun aux (str', count) =
Line 3,069:
print (Int.toString (count_substrings ("the three truths", "th")) ^ "\n");
print (Int.toString (count_substrings ("ababababab", "abab")) ^ "\n");
print (Int.toString (count_substrings ("abaabba*bbaba*bbab", "a*b")) ^ "\n");</langsyntaxhighlight>
 
=={{header|Stata}}==
<langsyntaxhighlight lang="stata">function strcount(s, x) {
n = 0
k = 1-(i=strlen(x))
Line 3,085:
 
strcount("ababababab","abab")
2</langsyntaxhighlight>
 
=={{header|Swift}}==
 
<langsyntaxhighlight lang="swift">import Foundation
 
func countSubstring(str: String, substring: String) -> Int {
Line 3,096:
 
print(countSubstring(str: "the three truths", substring: "th"))
print(countSubstring(str: "ababababab", substring: "abab"))</langsyntaxhighlight>
 
{{out}}
Line 3,105:
=={{header|Tcl}}==
The regular expression engine is ideal for this task, especially as the <tt>***=</tt> prefix makes it interpret the rest of the argument as a literal string to match:
<langsyntaxhighlight lang="tcl">proc countSubstrings {haystack needle} {
regexp -all ***=$needle $haystack
}
puts [countSubstrings "the three truths" "th"]
puts [countSubstrings "ababababab" "abab"]
puts [countSubstrings "abaabba*bbaba*bbab" "a*b"]</langsyntaxhighlight>
{{out}}
<pre>3
Line 3,117:
 
=={{header|Transd}}==
<langsyntaxhighlight lang="scheme">#lang transd
 
MainModule: {
Line 3,130:
(countSubstring "ababababab" "abab")
)
}</langsyntaxhighlight>{{out}}
<pre>
3
Line 3,137:
 
=={{header|TUSCRIPT}}==
<langsyntaxhighlight lang="tuscript">
$$ MODE TUSCRIPT, {}
occurences=COUNT ("the three truths", ":th:")
occurences=COUNT ("ababababab", ":abab:")
occurences=COUNT ("abaabba*bbaba*bbab",":a\*b:")
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 3,152:
=={{header|TXR}}==
 
<langsyntaxhighlight lang="txr">@(next :args)
@(do (defun count-occurrences (haystack needle)
(for* ((occurrences 0)
Line 3,165:
@(output)
@(count-occurrences hay ndl) occurrences(s) of @ndl inside @hay
@(end)</langsyntaxhighlight>
 
<pre>$ ./txr count-occurrences.txr "baba" "babababa"
Line 3,174:
=={{header|UNIX Shell}}==
{{works with|Bash}}
<langsyntaxhighlight lang="bash">#!/bin/bash
 
function countString(){
Line 3,188:
 
countString "the three truths" "th"
countString "ababababab" "abab"</langsyntaxhighlight>
{{Out}}
<pre>3
Line 3,195:
=={{header|VBA}}==
 
<langsyntaxhighlight VBAlang="vba">Function CountStringInString(stLookIn As String, stLookFor As String)
CountStringInString = UBound(Split(stLookIn, stLookFor))
End Function</langsyntaxhighlight>
 
=={{header|VBScript}}==
'''user created function'''
<syntaxhighlight lang="vb">
<lang vb>
Function CountSubstring(str,substr)
CountSubstring = 0
Line 3,218:
WScript.StdOut.Write CountSubstring("the three truths","th") & vbCrLf
WScript.StdOut.Write CountSubstring("ababababab","abab") & vbCrLf
</syntaxhighlight>
</lang>
'''Using built-in Regexp'''
 
Run it with CScript.
<syntaxhighlight lang="vb">
<lang vb>
function CountSubstring(str,substr)
with new regexp
Line 3,233:
WScript.StdOut.Writeline CountSubstring("the three truths","th")
WScript.StdOut.Writeline CountSubstring("ababababab","abab")
</syntaxhighlight>
</lang>
{{Out}}
<pre>
Line 3,241:
 
=={{header|Visual Basic .NET}}==
<langsyntaxhighlight lang="vbnet">Module Count_Occurrences_of_a_Substring
Sub Main()
Console.WriteLine(CountSubstring("the three truths", "th"))
Line 3,260:
Return count
End Function
End Module</langsyntaxhighlight>
{{Out}}
<pre>3
Line 3,268:
 
=={{header|Vlang}}==
<langsyntaxhighlight lang="vlang">fn main(){
println('the three truths'.count('th'))
println('ababababab'.count('abab'))
}</langsyntaxhighlight>
 
{{out}}
Line 3,280:
 
=={{header|Wortel}}==
<langsyntaxhighlight lang="wortel">@let {
c &[s t] #!s.match &(t)g
 
Line 3,287:
!!c "ababababab" "abab"
]]
}</langsyntaxhighlight>
Returns: <pre>[3 2]</pre>
 
Line 3,293:
{{libheader|Wren-pattern}}
{{libheader|Wren-fmt}}
<langsyntaxhighlight lang="ecmascript">import "/pattern" for Pattern
import "/fmt" for Fmt
 
Line 3,312:
var count = countSubstring.call(test[0], test[1])
Fmt.print("$6s occurs $d times in $q.", Fmt.q(test[1]), count, test[0])
}</langsyntaxhighlight>
 
{{out}}
Line 3,324:
 
=={{header|XPL0}}==
<langsyntaxhighlight XPL0lang="xpl0">include c:\cxpl\codes; \intrinsic 'code' declarations
string 0; \use zero-terminated strings, instead of MSb terminated
 
Line 3,364:
[IntOut(0, SubStr("the three truths", "th")); CrLf(0);
IntOut(0, SubStr("ababababab", "abab")); CrLf(0);
]</langsyntaxhighlight>
 
{{out}}
Line 3,385:
=={{header|zkl}}==
Two solutions:
<langsyntaxhighlight lang="zkl">fcn countSubstring(s,p){ pn:=p.len(); cnt:=n:=0;
while(Void!=(n:=s.find(p,n))){cnt+=1; n+=pn}
cnt
}</langsyntaxhighlight>
{{trans|J}}
<langsyntaxhighlight lang="zkl">fcn countSubstring(s,p){ (pl:=p.len()) and (s.len()-(s-p).len())/pl }</langsyntaxhighlight>
{{out}}
<pre>
Line 3,402:
 
=={{header|ZX Spectrum Basic}}==
<langsyntaxhighlight lang="zxbasic">10 LET t$="ABABABABAB": LET p$="ABAB": GO SUB 1000
20 LET t$="THE THREE TRUTHS": LET p$="TH": GO SUB 1000
30 STOP
Line 3,411:
1040 NEXT i
1050 PRINT p$;"=";c''
1060 RETURN </langsyntaxhighlight>
10,333

edits