214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
|
# File 'lib/mindwords.rb', line 214
def search(keyword, succinct: true)
a = @lines.grep(/#{keyword}/i).map do |line|
puts 'line: ' + line.inspect if @debug
words = line.split
r = words.grep /#{keyword}/i
i = words.index r[0]
[line, i]
end
return nil if a.empty?
a2 = a.sort_by(&:last).map(&:first)
puts 'a2: ' + a2.inspect if @debug
e = element(keyword.downcase.gsub(/ +/,'-'))
return MindWords.new(a2.uniq.join, debug: @debug) if e.nil?
a3 = []
a2.each do |line|
line.chomp.scan(/#[^ ]+/).each do |hashtag|
puts 'hashtag: ' + hashtag.inspect if @debug
r2 = @lines.grep(/^#{hashtag[1..-1]} #/)
a3 << r2.first if r2
end
end
puts 'a2: ' + a2.inspect if @debug
a2.concat a3
if succinct then
MindWords.new(a2.uniq.join, parent: e, debug: @debug)
else
MindWords.new(a2.uniq.join, debug: @debug)
end
end
|