編寫一個給定輸入字符串的方法,反轉括號內的所有字母。 例子 hellow - hellow括號內的javascript函數反轉功能
H(hellow)ellow - hwollehellow
對(巴(巴茲))BLIM forbazrabblim 我盯着這個代碼,但我不知道如何TDO其餘
function reverseParentheses(phrase) {
return phrase.split('').reverse().join('');
}
reverseParentheses("hellow");
什麼是* 「DAB tibah-輸出」 *?此外,這不僅適用於括號內,這反轉了整個給定的字符串。 –
這是「壞習慣」拼寫的倒退。 –
你的意思是[THIS](http://stackoverflow.com/questions/2441501/reverse-each-individual-word-of-hello-world-string-with-java)?請檢查一下。謝謝。 –