count function

Syntax

float count(inputString, matchString)

Parameters

Returns

Number of matches of matchString in inputString.

Description

This function returns the number of matches of the matchString in the inputString.

Related

Examples

count("cityengine", "e")
# result = 2

count("cityengine rocks my world; cityengine should rock yours too", "cityengine")
# result = 2

Copyright ©2008-2024 Esri R&D Center Zurich. All rights reserved.