var dataText = '12345|678910|asdfg'; var convertedText1 = dataText.replace(/|/g,"#"); var convertedText2 = dataText.replace(/\|/g,"#"); alert('convertedText1 : ' + convertedText1 + ' - convertedText2 : ' + convertedText2);
demo : https://jsfiddle.net/dv88jbkb/
'js' 카테고리의 다른 글
[jquery] how to get custom attribute value (0) | 2017.12.29 |
---|---|
[javascript] get parameters to object (0) | 2017.12.28 |
[javascript] replace all 할 때 (0) | 2017.09.04 |
[jsonp] Ajax jsonp 사용방법 (0) | 2017.07.12 |
[includes] 문자열 포함 여부 확인 (0) | 2017.06.01 |