Python 2.7 และ 3 solution
วิธีการแก้ปัญหานี้จะแทนที่การเกิดขึ้นครั้งแรกของสตริงที่กำหนดโดยพลการเดียว (“ เข็ม”) ในทุกบรรทัดของไฟล์อินพุตด้วยสตริงในแต่ละครั้งที่เลือกแบบสุ่มจากชุดของบรรทัดของรายการสตริงการแทนที่
#!/usr/bin/python
from __future__ import print_function
import sys, random
needle = sys.argv[1]
if sys.argv[2] == '-':
f_replacements = sys.stdin
else:
f_replacements = open(sys.argv[2])
with f_replacements:
replacements = [l.rstrip('\n') for l in f_replacements]
if not replacements:
raise ValueError('No replacement strings given')
if len(sys.argv) <= 3 or sys.argv[3] == '-':
f_in = sys.stdin
else:
f_in = open(sys.argv[3])
with f_in:
for s in f_in:
rep = replacements[random.randrange(len(replacements))]
print(s.rstrip('\n').replace(needle, rep, 1))
มันเกือบจะเป็นเรื่องเล็กน้อยที่จะยึดเข็มไว้ที่จุดเริ่มต้นหรือจุดสิ้นสุดของสตริงหรือใช้การแสดงออกปกติโดยสิ้นเชิง
การใช้
python replace-random.py NEEDLE REPLACEMENTS-FILE [INPUT-FILE]
ตัวอย่าง:
python replace-random.py '@address.com' file2.txt file1.txt
หรือ
python replace-random.py '@address.com' file2.txt < file1.txt