質問編集履歴
1
書式改善
test
CHANGED
File without changes
|
test
CHANGED
@@ -18,6 +18,26 @@
|
|
18
18
|
|
19
19
|
```
|
20
20
|
|
21
|
+
|
22
|
+
|
23
|
+
```senryu.rb
|
24
|
+
|
25
|
+
noun = node.surface
|
26
|
+
|
27
|
+
index = @sent.index(noun)
|
28
|
+
|
29
|
+
error=> read_word = "#{@kana[index]}" + @kana[index + 1]
|
30
|
+
|
31
|
+
# 文字数を数える
|
32
|
+
|
33
|
+
if read_word.gsub(/ァ|ィ|ゥ|ェ|ォ|ヵ|ヶ|ャ|ョ/, '').length == 7
|
34
|
+
|
35
|
+
middle = @sent[index] + @sent[index + 1]
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
```
|
40
|
+
|
21
41
|
ツイートを取得します
|
22
42
|
|
23
43
|
|
@@ -317,3 +337,13 @@
|
|
317
337
|
|
318
338
|
|
319
339
|
なにかわかる方いらしましたら教えていただきたいです。
|
340
|
+
|
341
|
+
|
342
|
+
|
343
|
+
---
|
344
|
+
|
345
|
+
ちなみにエラーの個所の記述を
|
346
|
+
|
347
|
+
```read_word = @kana[index] + @kana[index + 1]```とするとエラーが
|
348
|
+
|
349
|
+
```undefined method `+' for nil:NilClass```に代わりました。
|