Dalam python, ini akan melakukan pekerjaan:
#!/usr/bin/env python3
s = """How to get This line that this word repeated 3 times in THIS line?
But not this line which is THIS word repeated 2 times.
And I will get This line with this here and This one
A test line with four this and This another THIS and last this"""
for line in s.splitlines():
if line.lower().count("this") == 3:
print(line)
output:
How to get This line that this word repeated 3 times in THIS line?
And I will get This line with this here and This one
Atau untuk membaca dari file, dengan file sebagai argumen:
#!/usr/bin/env python3
import sys
file = sys.argv[1]
with open(file) as src:
lines = [line.strip() for line in src.readlines()]
for line in lines:
if line.lower().count("this") == 3:
print(line)
Rekatkan skrip ke file kosong, simpan sebagai find_3.py
, jalankan dengan perintah:
python3 /path/to/find_3.py <file_withlines>
Tentu saja kata "ini" dapat diganti dengan kata lain (atau bagian string atau baris lainnya), dan jumlah kemunculan per baris dapat diatur ke nilai lain apa pun di baris:
if line.lower().count("this") == 3:
Edit
Jika file berukuran besar (ratusan ribu / jutaan baris), kode di bawah ini akan lebih cepat; itu membaca file per baris alih-alih memuat file sekaligus:
#!/usr/bin/env python3
import sys
file = sys.argv[1]
with open(file) as src:
for line in src:
if line.lower().count("this") == 3:
print(line.strip())