質問編集履歴

1

コードがおかしかったので修正しました

2016/05/08 13:56

投稿

evans
evans

スコア48

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