質問編集履歴

1

変数が混雑していたので直しました

2020/09/05 07:06

投稿

youy104
youy104

スコア7

test CHANGED
File without changes
test CHANGED
@@ -18,19 +18,19 @@
18
18
 
19
19
  val sentence = text1.text.split("。").toTypedArray()
20
20
 
21
- var i = 0
21
+ var a = 0
22
22
 
23
- while (i < sentence.toString().count()){
23
+ while (a < sentence.toString().count()){
24
24
 
25
- if (sentence[i].contains(" [ ] ")) {
25
+ if (sentence[a].contains(" [ ] ")) {
26
26
 
27
- Log.d("i", "${i}")
27
+ Log.d("a", "${a}")
28
28
 
29
29
  a++
30
30
 
31
31
  } else {
32
32
 
33
- sentence.removeAt(i) //ここがエラー
33
+ sentence.removeAt(a) //ここがエラー
34
34
 
35
35
  }
36
36