Reading RTF + Text File and pattern matching

S

Sukhwinder Tambar

Reading RTF and Text File in Ruby and Pattern Matching/searching from
file and replacing with your data.


if you want to read RTF of Text file then u can take help from this code
Try out following solution.


filename ='sukhitambar.rtf'
targetfilename ='princetambar.rtf'
File.open(filename, 'r') do |f| # open file for reading
lines = f.readlines # read into array of lines
lines.each do |line| # traversing line by line
line= line.gsub!(/<TodayDate>/, Date.today) # Pattern (
<TodayDate> )
or
line= line.gsub!(/<......>/,data to be replaced)
File.open(targetfilename, 'a') do |content| # opening new
target file in append mode
content.puts line # saving the line to another
rtf file
end
end
end


In the above code user can read data from Rich Text Format (RTF) file
and search for some specific pattern and replace with his required
data.and saved it to another RTF file. i hope this code will help for
those whose want to read from RTF file and do pattern matching.

Thanks

By :-

Sukhwinder Singh Tambar

Attachments:
http://www.ruby-forum.com/attachment/3149/pattern_matching_solution.txt
 
J

Jarmo Pertman

Or, in little shorter way:

data = File.readlines("test1.txt") #read file into array
data.map! {|line| line.gsub(/world/, "ruby")} #invoke on each line gsub
File.open("test2.txt", "a") {|f| f.puts data} #output data to other file

Although I don't understand, why would you want to append instead of
write?
 
S

Sukhwinder Tambar

Thanks Jarmo Pertman for the little way to do this. i am using append
mode bcz i have lot of Pattern need to be replace with my date
dynamically. so i open the file in append mode inside the loop.

One more thing. in text file gsub find the required pattern easily but
while reading from RTF file we get the data in other way. so i did this

line= line.gsub!(/<TodayDate>/, Date.today)

i am agree with map you used.

bye the thank for shorter the code.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,767
Messages
2,569,572
Members
45,045
Latest member
DRCM

Latest Threads

Top