Prev
Open Object Rexx
Next
Code style
dark
electric
light
print
rgfdark
rgflight
tokio-day
tokio-night
vim-dark-blue
vim-dark-darkblue
vim-dark-desert
vim-dark-elflord
vim-dark-evening
vim-dark-industry
vim-dark-koehler
vim-dark-murphy
vim-dark-pablo
vim-dark-ron
vim-dark-slate
vim-dark-torte
vim-light-delek
vim-light-morning
vim-light-peachpuff
vim-light-shine
vim-light-zellner
5.1.7.39. caselessCountStr
Returns a count of the occurrences of
needle
in the receiving string that do not overlap. All matches are made using caseless comparisons.
Here are some examples:
Example 5.79. String class — caselessCountStr method
Say
"
a0Aa0A
"
~
caselessCountStr
(
"
a
"
)
--> 4
Say
"
J0kKk0
"
~
caselessCountStr
(
"
KK
"
)
--> 1
Prev
5.1.7.38. caselessContainsWord
Up
Home
Next
5.1.7.40. caselessEndsWith