質問編集履歴
1
コードがおかしかったので修正しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -38,6 +38,8 @@
|
|
38
38
|
|
39
39
|
}
|
40
40
|
|
41
|
+
pos = 0;
|
42
|
+
|
41
43
|
while(pos = targetStr.find(CR, pos), pos != std::string::npos) {
|
42
44
|
|
43
45
|
targetStr.replace(pos,CR.length(), "");
|
@@ -45,6 +47,8 @@
|
|
45
47
|
pos += CR.length();
|
46
48
|
|
47
49
|
}
|
50
|
+
|
51
|
+
pos = 0;
|
48
52
|
|
49
53
|
while(pos = targetStr.find(LF, pos), pos != std::string::npos) {
|
50
54
|
|