Stuck at SingleQuote challenge in build ur own shell

I’m stuck on the first Stage of Single Quotes i don’t know how to start this stage. can anyone please give me some hints or guid eme how to do without giving away the solutions.

thnxx

Hey @Vamshi-Medamaina, as you’ve probably noticed, simple splitting on spaces no longer works here.

One approach is to parse the input character-by-character while tracking state, for example:

  • currently outside quotes
  • currently inside quotes

Let me know if you need another hint.