Regarding challenge problem

how to solve this ques “can you read this” what to use delimator in string tokenizer function

Hello @Namanjain123,

The inbuilt string tokenizer function would not work for this question.
You cannot specify any delimiter here.

You have to explicitly create a function that reads the inputted string character by character and tokenizes it.

Hint:
Each word/token starts with the capital alphabet and ends when next capital alphabet or end of the string occurs.

Hope, this would help.
Give a like, if you are satisfied.