I have a simple match to test if a string contains contains the letter 's' which works ok.
How can I count how many times 's' appears in that string?
Keith
Code:
if($_[0]=~ m/@/){
code
}
Keith