Skip to content
Advertisement

Remove part of the string between the comments along with the comments

Here’s a string. I want to remove a C-style comments with the comments itself. Without using regex

JavaScript

I want the output to be just:

word234

Advertisement

Answer

Here is a simple algorithm that keep the state over 2 characters and uses a flag to keep or not the characters.

JavaScript

Output:

JavaScript

If you want to handle nested comments (not sure if this exists, but this is fun to do), the algorithm is easy to modify to use a flag that counts the depth level:

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement