現在、ICU ディクショナリ ベースのブレーク イテレータに新たに追加したテストを行っています。テキストドキュメントで単語分割をテストできるコードがありますが、テキストドキュメントが大きすぎると、エラーが発生します: bash: ./a.out: Argument list too long
任意のサイズのファイルをコードで実行できるように、引数リストが長くなりすぎたときに引数リストを分割するようにコードを編集する方法がわかりません。元のコードの作者はとても忙しいのですが、誰か助けてくれませんか?
調査されているものの印刷を削除して、それが役立つかどうかを確認しようとしましたが、大きなファイルでエラーが発生します(調査されているものを印刷する必要はありません-結果が必要です)。
ソース テキスト ファイルを 1 行ずつ読み取り、結果を 1 行ずつ別のテキスト ファイルにエクスポートするようにコードを変更できれば (完了時にすべての行が含まれる)、完璧です。
コードは次のとおりです。
/*
Written by George Rhoten to test how word segmentation works.
Code inspired by the break ICU sample.
Here is an example to run this code under Cygwin.
PATH=$PATH:icu-test/source/lib ./a.exe "`cat input.txt`" > output.txt
Encode input.txt as UTF-8.
The output text is UTF-8.
*/
#include <stdio.h>
#include <unicode/brkiter.h>
#include <unicode/ucnv.h>
#define ZW_SPACE "\xE2\x80\x8B"
void printUnicodeString(const UnicodeString &s) {
int32_t len = s.length() * U8_MAX_LENGTH + 1;
char *charBuf = new char[len];
len = s.extract(0, s.length(), charBuf, len, NULL);
charBuf[len] = 0;
printf("%s", charBuf);
delete charBuf;
}
/* Creating and using text boundaries */
int main(int argc, char **argv)
{
ucnv_setDefaultName("UTF-8");
UnicodeString stringToExamine("Aaa bbb ccc. Ddd eee fff.");
printf("Examining: ");
if (argc > 1) {
// Override the default charset.
stringToExamine = UnicodeString(argv[1]);
if (stringToExamine.charAt(0) == 0xFEFF) {
// Remove the BOM
stringToExamine = UnicodeString(stringToExamine, 1);
}
}
printUnicodeString(stringToExamine);
puts("");
//print each sentence in forward and reverse order
UErrorCode status = U_ZERO_ERROR;
BreakIterator* boundary = BreakIterator::createWordInstance(NULL, status);
if (U_FAILURE(status)) {
printf("Failed to create sentence break iterator. status = %s",
u_errorName(status));
exit(1);
}
printf("Result: ");
//print each word in order
boundary->setText(stringToExamine);
int32_t start = boundary->first();
int32_t end = boundary->next();
while (end != BreakIterator::DONE) {
if (start != 0) {
printf(ZW_SPACE);
}
printUnicodeString(UnicodeString(stringToExamine, start, end-start));
start = end;
end = boundary->next();
}
delete boundary;
return 0;
}
本当にありがとう!-ネイサン