can we a upper case delimiter or we would need to write our own function (i.e string tokenizer function)to solve it .
CanYouReadThis problem
Hello @vipin.kumar,
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.
1 Like