Question: C++. So I have to write a function that will trim off any punctuation from the beginning and end of the string. For example: ...HeyThere...

C++.So I have to write a function that will trim off any punctuation from the beginning and end of the string.

For example:

...HeyThere... would become HeyThere

....Hey!!!!!There][][ would stay like Hey!!!!!There.

string cleanToken(string s) { // TODO: Write this function. }

I am required to do these things to the string:

1. Remove punctuation like above I mentioned

2. Return empty string if the string does not contain at least one letter.

3. Covert it to lowercase letters.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!