Class: Indofix::IndofixVerbaHelper

Inherits:
Object
  • Object
show all
Defined in:
lib/indofix/indofix_verba_helper.rb

Instance Method Summary collapse

Instance Method Details

#verba_ber_x(string) ⇒ Object

id:Verba (ber-)‎



72
73
74
75
76
77
78
79
80
81
82
# File 'lib/indofix/indofix_verba_helper.rb', line 72

def verba_ber_x(string)
  @verex = VerEx.new do
    start_of_line
    find 'ber'
    begin_capture
    anything
    end_capture
    end_of_line
  end
  return @verex.match(string)
end

#verba_ber_x_an(string) ⇒ Object

id:Verba (ber-an)‎



85
86
87
88
89
90
91
92
93
94
95
96
# File 'lib/indofix/indofix_verba_helper.rb', line 85

def verba_ber_x_an(string)
  @verex = VerEx.new do
    start_of_line
    find 'ber'
    begin_capture
    anything
    end_capture
    find 'an'
    end_of_line
  end
  return @verex.match(string)
end

#verba_ber_x_kan(string) ⇒ Object

id:Verba (ber-kan)



99
100
101
102
103
104
105
106
107
108
109
110
# File 'lib/indofix/indofix_verba_helper.rb', line 99

def verba_ber_x_kan(string)
  @verex = VerEx.new do
    start_of_line
    find 'ber'
    begin_capture
    anything
    end_capture
    find 'kan'
    end_of_line
  end
  return @verex.match(string)
end

#verba_di_x(string) ⇒ Object

id:Verba (di-)‎



113
114
115
116
117
118
119
120
121
122
123
# File 'lib/indofix/indofix_verba_helper.rb', line 113

def verba_di_x(string)
  @verex = VerEx.new do
    start_of_line
    find 'di'
    begin_capture
    anything
    end_capture
    end_of_line
  end
  return @verex.match(string)
end

#verba_di_x_i(string) ⇒ Object

id:Verba (di-i)‎



126
127
128
129
130
131
132
133
134
135
136
137
# File 'lib/indofix/indofix_verba_helper.rb', line 126

def verba_di_x_i(string)
  @verex = VerEx.new do
    start_of_line
    find 'di'
    begin_capture
    anything
    end_capture
    find 'i'
    end_of_line
  end
  return @verex.match(string)
end

#verba_di_x_kan(string) ⇒ Object

id:Verba (di-kan)‎



140
141
142
143
144
145
146
147
148
149
150
151
# File 'lib/indofix/indofix_verba_helper.rb', line 140

def verba_di_x_kan(string)
  @verex = VerEx.new do
    start_of_line
    find 'di'
    begin_capture
    anything
    end_capture
    find 'kan'
    end_of_line
  end
  return @verex.match(string)
end

#verba_diper_x(string) ⇒ Object

id:Verba (diper-)‎



154
155
156
157
158
159
160
161
162
163
164
# File 'lib/indofix/indofix_verba_helper.rb', line 154

def verba_diper_x(string)
  @verex = VerEx.new do
    start_of_line
    find 'diper'
    begin_capture
    anything
    end_capture
    end_of_line
  end
  return @verex.match(string)
end

#verba_diper_x_i(string) ⇒ Object

id:Verba (diper-i)



167
168
169
170
171
172
173
174
175
176
177
178
# File 'lib/indofix/indofix_verba_helper.rb', line 167

def verba_diper_x_i(string)
  @verex = VerEx.new do
    start_of_line
    find 'diper'
    begin_capture
    anything
    end_capture
    find 'i'
    end_of_line
  end
  return @verex.match(string)
end

#verba_diper_x_kan(string) ⇒ Object

id:Verba (diper-kan)‎



181
182
183
184
185
186
187
188
189
190
191
192
# File 'lib/indofix/indofix_verba_helper.rb', line 181

def verba_diper_x_kan(string)
  @verex = VerEx.new do
    start_of_line
    find 'diper'
    begin_capture
    anything
    end_capture
    find 'kan'
    end_of_line
  end
  return @verex.match(string)
end

#verba_kau_x(string) ⇒ Object

id:Verba (kau-)‎



195
196
197
198
199
200
201
202
203
204
205
# File 'lib/indofix/indofix_verba_helper.rb', line 195

def verba_kau_x(string)
  @verex = VerEx.new do
    start_of_line
    find 'kau'
    begin_capture
    anything
    end_capture
    end_of_line
  end
  return @verex.match(string)
end

#verba_kau_x_i(string) ⇒ Object

id:Verba (kau-i)‎



208
209
210
211
212
213
214
215
216
217
218
219
# File 'lib/indofix/indofix_verba_helper.rb', line 208

def verba_kau_x_i(string)
  @verex = VerEx.new do
    start_of_line
    find 'kau'
    begin_capture
    anything
    end_capture
    find 'i'
    end_of_line
  end
  return @verex.match(string)
end

#verba_kau_x_kan(string) ⇒ Object

id:Verba (kau-kan)‎



222
223
224
225
226
227
228
229
230
231
232
233
# File 'lib/indofix/indofix_verba_helper.rb', line 222

def verba_kau_x_kan(string)
  @verex = VerEx.new do
    start_of_line
    find 'kau'
    begin_capture
    anything
    end_capture
    find 'kan'
    end_of_line
  end
  return @verex.match(string)
end

#verba_ke_x_an(string) ⇒ Object

id:Verba (ke-an)‎



236
237
238
239
240
241
242
243
244
245
246
247
# File 'lib/indofix/indofix_verba_helper.rb', line 236

def verba_ke_x_an(string)
  @verex = VerEx.new do
    start_of_line
    find 'ke'
    begin_capture
    anything
    end_capture
    find 'an'
    end_of_line
  end
  return @verex.match(string)
end

#verba_ku_x(string) ⇒ Object

id:Verba (ku-)‎



250
251
252
253
254
255
256
257
258
259
260
# File 'lib/indofix/indofix_verba_helper.rb', line 250

def verba_ku_x(string)
  @verex = VerEx.new do
    start_of_line
    find 'ku'
    begin_capture
    anything
    end_capture
    end_of_line
  end
  return @verex.match(string)
end

#verba_ku_x_i(string) ⇒ Object

id:Verba (ku-i)‎



263
264
265
266
267
268
269
270
271
272
273
274
# File 'lib/indofix/indofix_verba_helper.rb', line 263

def verba_ku_x_i(string)
  @verex = VerEx.new do
    start_of_line
    find 'ku'
    begin_capture
    anything
    end_capture
    find 'i'
    end_of_line
  end
  return @verex.match(string)
end

#verba_ku_x_kan(string) ⇒ Object

id:Verba (ku-kan)‎



277
278
279
280
281
282
283
284
285
286
287
288
# File 'lib/indofix/indofix_verba_helper.rb', line 277

def verba_ku_x_kan(string)
  @verex = VerEx.new do
    start_of_line
    find 'ku'
    begin_capture
    anything
    end_capture
    find 'kan'
    end_of_line
  end
  return @verex.match(string)
end

#verba_me_x(string) ⇒ Object

id:Verba (me-)‎



291
292
293
294
295
296
297
298
299
300
301
# File 'lib/indofix/indofix_verba_helper.rb', line 291

def verba_me_x(string)
  @verex = VerEx.new do
    start_of_line
    find 'me'
    begin_capture
    anything
    end_capture
    end_of_line
  end
  return process_imbuhan_n_ng(@verex.match(string))
end

#verba_me_x_i(string) ⇒ Object

id:Verba (me-i)



304
305
306
307
308
309
310
311
312
313
314
315
# File 'lib/indofix/indofix_verba_helper.rb', line 304

def verba_me_x_i(string)
  @verex = VerEx.new do
    start_of_line
    find 'me'
    begin_capture
    anything
    end_capture
    find 'i'
    end_of_line
  end
  return process_imbuhan_n_ng(@verex.match(string))
end

#verba_me_x_kan(string) ⇒ Object

id:Verba (me-kan)‎



318
319
320
321
322
323
324
325
326
327
328
329
# File 'lib/indofix/indofix_verba_helper.rb', line 318

def verba_me_x_kan(string)
  @verex = VerEx.new do
    start_of_line
    find 'me'
    begin_capture
    anything
    end_capture
    find 'kan'
    end_of_line
  end
  return process_imbuhan_n_ng(@verex.match(string))
end

#verba_memper_x(string) ⇒ Object

id:Verba (memper-)‎



332
333
334
335
336
337
338
339
340
341
342
# File 'lib/indofix/indofix_verba_helper.rb', line 332

def verba_memper_x(string)
  @verex = VerEx.new do
    start_of_line
    find 'memper'
    begin_capture
    anything
    end_capture
    end_of_line
  end
  return @verex.match(string)
end

#verba_memper_x_i(string) ⇒ Object

id:Verba (memper-i)‎



345
346
347
348
349
350
351
352
353
354
355
356
# File 'lib/indofix/indofix_verba_helper.rb', line 345

def verba_memper_x_i(string)
  @verex = VerEx.new do
    start_of_line
    find 'memper'
    begin_capture
    anything
    end_capture
    find 'i'
    end_of_line
  end
  return @verex.match(string)
end

#verba_memper_x_kan(string) ⇒ Object

id:Verba (memper-kan)‎



359
360
361
362
363
364
365
366
367
368
369
370
# File 'lib/indofix/indofix_verba_helper.rb', line 359

def verba_memper_x_kan(string)
  @verex = VerEx.new do
    start_of_line
    find 'memper'
    begin_capture
    anything
    end_capture
    find 'kan'
    end_of_line
  end
  return @verex.match(string)
end

#verba_per_x_kan(string) ⇒ Object

id:Verba (per-kan)



373
374
375
376
377
378
379
380
381
382
383
384
# File 'lib/indofix/indofix_verba_helper.rb', line 373

def verba_per_x_kan(string)
  @verex = VerEx.new do
    start_of_line
    find 'per'
    begin_capture
    anything
    end_capture
    find 'kan'
    end_of_line
  end
  return @verex.match(string)
end

#verba_ter_x(string) ⇒ Object

id:Verba (ter-)



481
482
483
484
485
486
487
488
489
# File 'lib/indofix/indofix_verba_helper.rb', line 481

def verba_ter_x(string)
  @verex = VerEx.new do
    find 'ter'
    begin_capture
    anything
    end_capture
  end
  return @verex.match(string)
end

#verba_ter_x_i(string) ⇒ Object

id:Verba (ter-i)‎



492
493
494
495
496
497
498
499
500
501
502
503
# File 'lib/indofix/indofix_verba_helper.rb', line 492

def verba_ter_x_i(string)
  @verex = VerEx.new do
    start_of_line
    find 'ter'
    begin_capture
    anything
    end_capture
    find 'i'
    end_of_line
  end
  return @verex.match(string)
end

#verba_ter_x_kan(string) ⇒ Object

id:Verba (ter-kan)‎



506
507
508
509
510
511
512
513
514
515
516
517
# File 'lib/indofix/indofix_verba_helper.rb', line 506

def verba_ter_x_kan(string)
  @verex = VerEx.new do
    start_of_line
    find 'ter'
    begin_capture
    anything
    end_capture
    find 'kan'
    end_of_line
  end
  return @verex.match(string)
end

#verba_x_an(string) ⇒ Object

id:Verba (-an)‎



7
8
9
10
11
12
13
14
15
16
17
# File 'lib/indofix/indofix_verba_helper.rb', line 7

def verba_x_an(string)
  @verex = VerEx.new do
    start_of_line
    begin_capture
    anything
    end_capture
    find 'an'
    end_of_line
  end
  return @verex.match(string)
end

#verba_x_i(string) ⇒ Object

id:Verba (-i)‎



20
21
22
23
24
25
26
27
28
29
30
# File 'lib/indofix/indofix_verba_helper.rb', line 20

def verba_x_i(string)
  @verex = VerEx.new do
    start_of_line
    begin_capture
    anything
    end_capture
    find 'i'
    end_of_line
  end
  return @verex.match(string)
end

#verba_x_kan(string) ⇒ Object

id:Verba (-kan)‎



33
34
35
36
37
38
39
40
41
42
43
# File 'lib/indofix/indofix_verba_helper.rb', line 33

def verba_x_kan(string)
  @verex = VerEx.new do
    start_of_line
    begin_capture
    anything
    end_capture
    find 'kan'
    end_of_line
  end
  return @verex.match(string)
end

#verba_x_kanlah(string) ⇒ Object

id:Verba (-kanlah)‎



46
47
48
49
50
51
52
53
54
55
56
# File 'lib/indofix/indofix_verba_helper.rb', line 46

def verba_x_kanlah(string)
  @verex = VerEx.new do
    start_of_line
    begin_capture
    anything
    end_capture
    find 'kanlah'
    end_of_line
  end
  return @verex.match(string)
end

#verba_x_lah(string) ⇒ Object

id:Verba (-lah)‎



59
60
61
62
63
64
65
66
67
68
69
# File 'lib/indofix/indofix_verba_helper.rb', line 59

def verba_x_lah(string)
  @verex = VerEx.new do
    start_of_line
    begin_capture
    anything
    end_capture
    find 'lah'
    end_of_line
  end
  return @verex.match(string)
end

#verbaplural_ber_x(string) ⇒ Object

id:Verba (plural ber-)‎



400
401
402
403
404
405
406
407
408
409
410
# File 'lib/indofix/indofix_verba_helper.rb', line 400

def verbaplural_ber_x(string)
  @verex = VerEx.new do
    start_of_line
    find 'ber'
    begin_capture
    anything
    end_capture
    end_of_line
  end
  return @verex.match(string)
end

#verbaplural_ber_x_an(string) ⇒ Object

id:Verba (plural ber-an)‎



413
414
415
416
417
418
419
420
421
422
423
424
# File 'lib/indofix/indofix_verba_helper.rb', line 413

def verbaplural_ber_x_an(string)
  @verex = VerEx.new do
    start_of_line
    find 'ber'
    begin_capture
    anything
    end_capture
    find 'an'
    end_of_line
  end
  return @verex.match(string)
end

#verbaplural_me_x(string) ⇒ Object

id:Verba (plural me-)‎



427
428
429
430
431
432
433
434
435
436
437
# File 'lib/indofix/indofix_verba_helper.rb', line 427

def verbaplural_me_x(string)
  @verex = VerEx.new do
    start_of_line
    find 'me'
    begin_capture
    anything
    end_capture
    end_of_line
  end
  return process_imbuhan_n_ng(@verex.match(string))
end

#verbaplural_me_x_i(string) ⇒ Object

id:Verba (plural me-i)‎



440
441
442
443
444
445
446
447
448
449
450
451
# File 'lib/indofix/indofix_verba_helper.rb', line 440

def verbaplural_me_x_i(string)
  @verex = VerEx.new do
    start_of_line
    find 'me'
    begin_capture
    anything
    end_capture
    find 'i'
    end_of_line
  end
  return process_imbuhan_n_ng(@verex.match(string))
end

#verbaplural_me_x_kan(string) ⇒ Object

id:Verba (plural me-kan)‎



454
455
456
457
458
459
460
461
462
463
464
465
# File 'lib/indofix/indofix_verba_helper.rb', line 454

def verbaplural_me_x_kan(string)
  @verex = VerEx.new do
    start_of_line
    find 'me'
    begin_capture
    anything
    end_capture
    find 'kan'
    end_of_line
  end
  return process_imbuhan_n_ng(@verex.match(string))
end

#verbaplural_ter_x(string) ⇒ Object

id:Verba (plural ter-)‎



468
469
470
471
472
473
474
475
476
477
478
# File 'lib/indofix/indofix_verba_helper.rb', line 468

def verbaplural_ter_x(string)
  @verex = VerEx.new do
    start_of_line
    find 'ter'
    begin_capture
    anything
    end_capture
    end_of_line
  end
  return @verex.match(string)
end

#verbaplural_x_an(string) ⇒ Object

id:Verba (plural -an)‎



387
388
389
390
391
392
393
394
395
396
397
# File 'lib/indofix/indofix_verba_helper.rb', line 387

def verbaplural_x_an(string)
  @verex = VerEx.new do
    start_of_line
    begin_capture
    anything
    end_capture
    find 'an'
    end_of_line
  end
  return @verex.match(string)
end