,如果我有一個字符串作爲這樣刪除 ' n n。' C++
"I am not here... \n..Hello\n.\n....Whats happening"
我想要替換上面的字符串這樣:
"I am not here... \n..Hello\n. \n....Whats happening"
^Space added
只是有點上的背景是什麼我正在做。我在C++中使用sendmail和\n.\n
是End Of Message
等效的sendmail。我剛剛創建了一個使用sendmail發送郵件的類。但顯然如果來自outsite的用戶給了sendmail這個命令我希望它被刪除。這裏是我的留言功能just incase .:
//Operator to add to the message
void operator<<(string imessage){
if (imessage != ""){ message += imessage; }
}
我該如何去做這件事。提前致謝:D
不要忘記檢查消息的* start *處的'。\ n'。 – 2010-02-01 02:09:15
在發送郵件之前在郵件的開始和結尾添加新行可能是一個更好的主意。無論如何,這都是編碼過程的一部分。 – Potatoswatter 2010-02-01 02:30:20
Ooo謝謝。 :D'。\ n'忘記了這一點。 :D – 2010-02-02 12:18:39