Strip Comments

SungJunEun·2021년 11월 26일
0

Codewars 문제풀이

목록 보기
23/26
post-thumbnail

Description:

Complete the solution so that it strips all text that follows any of a set of comment markers passed in. Any whitespace at the end of the line should also be stripped out.

Example:

Given an input string of:

apples, pears # and bananas
grapes
bananas !apples

The output expected would be:

apples, pears
grapes
bananas

The code would be called like so:

var result = solution("apples, pears # and bananas\ngrapes\nbananas !apples", ["#", "!"])
// result should == "apples, pears\ngrapes\nbananas"

My solution:

function solution(input, markers) {
  const reg = / ["#", "!","$"][ a-zA-Z]+/gm;
  const output = input.replace(reg,"");
  return output;
};

Best solutions:

내 것과 동일하다.

profile
블록체인 개발자(진)

7개의 댓글

comment-user-thumbnail
2023년 7월 24일

You need define a immaculate grid function that takes two parameters: the input text and the set of comment markers. And then split the input text into lines to process them individually.

답글 달기
comment-user-thumbnail
2023년 10월 23일

I am also studying more in-depth knowledge about developing formula functions. It's great with a lot of diverse information and effective methods soccer random

답글 달기
comment-user-thumbnail
2023년 10월 27일

You are at the right place and can get all the fun as well as erotic enjoyment. If you want to enjoy time at a nightclub or disco hire – the sizzling Mallu Escort in Goa.

답글 달기
comment-user-thumbnail
2023년 11월 4일

The Munirka Call Girl Service are well known to provide satisfaction to their customers. They have rosy cheeks, dark hairs, and glossy lips that are enough to entangle you without any second thought. They are beautiful divas who have different tastes, and their accessories are simple enough to entice any individual.

답글 달기
comment-user-thumbnail
2024년 5월 8일

No, I haven’t had that experience before, but if you are interested check out this link: percetakan jakarta timur

답글 달기
comment-user-thumbnail
2024년 6월 17일

The Escort in Chennai is well-known for pleasing their clients. Their rosy cheeks, dark hair, and shiny lips make them stand out. These gorgeous ladies have their own personal preferences, and their simple accessories can captivate anyone.

답글 달기