크롬 북 소유자 인 저는 Cloud9에서 사용하는 편집기 인 Ace IDE를 자주 사용합니다. 여분의 공백을 처리하기위한 많은 도구가 있지만 빈 줄을 지우는 것에는 특히 부족합니다.
오늘 당신의 임무는 [ ;)
]에 복사하여 붙여 넣을 수있는 장소에서 입력이 주어지면 동일한 것을 출력하고 모든 공백과 테이블을 빈 줄에 저장하는 것입니다.
#
제거 할 공백 문자를 나타내는 s 와 함께 몇 가지 예를 들겠 습니다.
입력 1 :
if (this.Color !== 'blue') {
##
this.Color = 'blue';
}
산출:
if (this.Color !== 'blue') {
[empty line]
this.Color = 'blue';
}
입력 2 :
function outputSomething(times) {
for (var iter = 0; iter < times; iter++) {
console.log('"# # " represents a tabulator');
// This is a comment
# #
}}
산출:
function outputSomething(times) {
for (var iter = 0; iter < times; iter++) {
console.log('"# # " represents a tabulator');
// This is a comment
[empty line]
}}
입력 3 :
var x = 'Do you prefer spaces or tabs?';
var y = 'I\'m using both here. Sue me.';
# # ####
console.log(x + ' ' + y);
산출:
var x = 'Do you prefer spaces or tabs?';
var y = 'I\'m using both here. Sue me.';
[empty line]
console.log(x + ' ' + y);
원하는대로 입력을 처리 할 수 있습니다. [ ;)
] 에서 복사하여 붙여 넣기 할 수있는 한 어디에서나 출력 합니다.
표준 허점이 적용되며 바이트 단위의 최단 답변이 승리합니다!
[empty line]
합니까, 아니면 전혀 줄이 없어야합니까?