This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## The following example demonstrates | |
## how a serach and replace string task | |
## can be peformed with R across several files | |
## Create two text files with content | |
filenames <- c( tempfile(), tempfile() ) | |
for( f in filenames ){ | |
cat("We wish you a Merry Christmas!\n\nBest regards\n", file=f) | |
} |