0
A
回答
0
我試過了。
> cat test
Honesty
World
Hello
world
Hello
honesty
> sort -uf test
Hello
Honesty
World
> sort -uf test | tr A-Z a-z
hello
honesty
world
感謝您的幫助。
0
- 讀一個字
- 將它轉換爲小寫
- 重複檢查與某種集/散列表之類的事情。
例如,在C++中,你可以使用這樣的事情:
#include <set>
#include <string>
#include <iostream>
#include <algorithm>
#include <ctype.h>
struct lowercase {
std::string operator()(std::string const &s) const {
std::string ret(s);
std::transform(&s[0], &s[s.length()-1], &ret[0], tolower);
return ret;
}
};
int main() {
std::set<std::string> items;
std::transform(
std::istream_iterator<std::string>(std::cin),
std::istream_iterator<std::string>(),
std::inserter(items, items.begin()),
lowercase());
std::copy(items.begin(), items.end(),
std::ostream_iterator<std::string>(std::cout, "\n"));
return 0;
}
相關問題
- 1. 刪除單詞文檔中重複的相鄰單詞
- 2. 如何刪除相同的單詞?
- 3. Flex如何區分大寫單詞,小寫單詞和單詞?
- 4. 從文本中消除停用詞,同時不刪除重複的常規詞
- 5. 如何分別替換同一句中的相同單詞但不同大小寫?
- 6. 如何刪除重複的單詞串,並在相同的順序
- 7. 刪除地址中的重複單詞
- 8. 如何刪除單詞前的文本?
- 9. 如何從ant中的文件中刪除重複的單詞?
- 10. c#代碼刪除文本文件中的重複單詞
- 11. 從文本文件中刪除重複單詞
- 12. 如何通過記事本刪除文本文件中重複的單詞++
- 13. 刪除全部大寫/小寫的單詞。 C++
- 14. 以大寫字母刪除單詞
- 15. 刪除重複的單詞mysql concat_ws
- 16. 記事本++刪除所有不在單詞表中的單詞
- 17. 如何刪除VI中不同單詞的特定字母
- 18. Git刪除不同大小寫的相同文件
- 19. 從數組刪除重複的單詞和返回唯一相同的數組
- 20. 如何在單詞超過2億時使用Java刪除重複的單詞?
- 21. 如何在windows phone中用單個單詞編寫不同顏色的文本?
- 22. 如何刪除同義詞?
- 23. 在R中用相同的單詞替換沒有初始@的相同單詞
- 24. 如何從Java中的單詞中刪除重複的字母
- 25. 如何從java中的數組中刪除重複的單詞
- 26. 如何大寫單詞
- 27. 從文本中刪除單詞/數字
- 28. 如何刪除重複的單詞在字符串中的MATLAB
- 29. 單獨的空格分隔單詞並刪除重複的單詞
- 30. 如何刪除詞典列表中,如果相同的單詞在另一份名單(Python 2.7版)
哪種語言? – 2010-06-23 18:26:12
你想寫一個程序來做到這一點?或者你只是有一個文本文件需要編輯一次,而你只是尋找一個工具來幫助它? – David 2010-06-23 18:31:17
哪plataform? – pcent 2010-06-23 18:31:24