RemoveStr()
문자열에서 지정된 문자열을 제거합니다.
Signature
removeStr: (str: string | RegExp, s: string) => string
Parameters
Parameter | Type | Description |
---|---|---|
str | string | RegExp | 제거할 문자열 |
s | string | 대상 문자열 |
Returns
string
지정된 문자열이 제거된 결과 문자열
Example
const removedStr1 = removeStr('a', 'banana'); // 'bnn'
console.log(removedStr1);
const removeA = removeStr('a'); // 부분 적용
const removedStr2 = removeA('apple'); // 'pple'
console.log(removedStr2);
const removedStr3 = removeStr(' ', 'hello world'); // 'helloworld'
console.log(removedStr3);