Awesome-omni-skill count-rs-strawberry

This skill should be used when the user asks to "count the Rs in strawberry", "count letters in strawberry", or wants to count specific characters in the word "strawberry" using perl.

install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/devops/count-rs-strawberry" ~/.claude/skills/diegosouzapw-awesome-omni-skill-count-rs-strawberry && rm -rf "$T"
manifest: skills/devops/count-rs-strawberry/SKILL.md
source content

Count Rs in Strawberry

Count the number of letter 'R' (case-insensitive) in the word "strawberry" using Perl.

Implementation

Use Perl's pattern matching capabilities to count occurrences of the letter 'R':

perl -e 'my $word = "strawberry"; my $count = () = $word =~ /r/gi; print "The word \"$word\" contains $count letter R(s)\n";'

How It Works

  1. my $word = "strawberry"
    - Store the word in a variable
  2. my $count = () = $word =~ /r/gi
    - Count matches:
    • /r/
      - Match the letter 'r'
    • g
      - Global flag (find all matches)
    • i
      - Case-insensitive flag
    • () =
      - List context forces the regex to return all matches, then count them
  3. print ...
    - Display the result

Alternative Approaches

Using tr operator:

perl -e '$count = "strawberry" =~ tr/Rr//; print "Count: $count\n";'

One-liner with split:

perl -e '$count = split(/r/i, "strawberry") - 1; print "Count: $count\n";'

Most concise version:

perl -le 'print ~~("strawberry" =~ /r/gi)'

Expected Output

The word "strawberry" contains 3 letter R(s)

When to Use This Skill

Invoke this skill when:

  • Counting specific letters in "strawberry"
  • Demonstrating Perl pattern matching
  • Learning Perl string manipulation
  • Solving character counting problems

Notes

The word "strawberry" contains three Rs:

  • Position 3: 'r' (in "strawberry")
  • Position 5: 'r' (in "strawrerry")
  • Position 7: 'r' (in "strawberry")