String.prototype.replace() 의 별로 알려지지 않은 쓰는 방법 「$&」 「$`」 「$'」 「$$」 「$n」
여기를 보시면 내 게시물을 읽지 않아도 괜찮습니다. 시간을 유효하게 사용해 주시면 좋겠습니다.
javascript 공부중인 것입니다. 실수가 있으시면 알려 주시면 고맙습니다
참고 사이트 그대로입니다만 이렇게 동작하는 것을 확인할 수 있었습니다.
const msg = 'This is a great message';
console.log(msg.replace('great', 'wonderful'))
// "This is a wonderful message"
// 普通に置換
// 「great」を「wonderful」に置換
console.log(msg.replace('great', '$&-$&'))
// "This is a great-great message"
// 「$&」は一致した部分文字列を表す
// 「great」を「great-great」に置換
console.log(msg.replace('great', '$`'))
// "This is a This is a message"
// 「$`」は一致した部分文字列の前にある文字列を表す
// 「great」を「This is a 」に置換
console.log(msg.replace('great', `$'`))
// "This is a message message"
// 「$'」は一致した部分文字列の後ろにある文字列を表す
// 「great」を「 message」に置換
console.log('100ドル'.replace('ドル', '$$'))
// "100$"
console.log('100ドル'.replace('ドル', '$$`'))
// "100$`" (@chai222222さんのコメントにより追記)
console.log('100ドル'.replace('ドル', '$`'))
// ↑だと"100100"となってしまう (@chai222222さんのコメントにより追記)
console.log('John Smith'.replace(/(\w+)\s(\w+)/, '$2, $1'))
// "Smith, John"
// 括弧で囲まれたn番目の文字列を表す
솔직히 이렇게 쓰면 알기 어렵다고 생각했습니다.
「어떤 문제를 해결하려고 정규 표현을 사용하면 문제가 2개로 늘어난다」라는 명언도 있는 것 같고, 조심해 사용해 가면 좋겠다고 생각했습니다.
읽어 주셔서 감사합니다. m(_ _)m
Reference
이 문제에 관하여(String.prototype.replace() 의 별로 알려지지 않은 쓰는 방법 「$&」 「$`」 「$'」 「$$」 「$n」), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/okumurakengo/items/5474f8d224d18a80fe84텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)