cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • Use JMP Clinical with CDISC-compliant data. Review studies, ID safety and efficacy signals & communicate findings with interactive graphics. Register to see how. Aug. 27, 2 pm US ET.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
psundar6
Level III

Count number of occurrences of a character in a string

Hi,

I am trying to count the number of occurrences of a character in a string. How do I achieve that using JSL?

For eg:

Number of occurrences of letter 'A' in the below strings

APPLE -> 1

PEARS -> 1

BANANA -> 2

 

1 REPLY 1
psundar6
Level III

Re: Count number of occurrences of a character in a string

Below formula actually works perfect.

 

Length( :Name( "Col1" ) ) - Length( Substitute( :Name( "Col1" ), "A", "" ) )

Recommended Articles