I have an XML file where I need to replace attribute values with the values from an array using GulpJS.
JavaScript code:
var gulp = require('gulp');
var replace = require('gulp-replace');
gulp.task('default', function() {
//array is dynamic
var users = ["existing_value1", "existing_value2", "existing_value3"];
var num = users.length();
for (i=0;i<num;i++) {
gulp.src(['idmap/*.xml'])
.pipe(replace(users[i], 'SYSTEM'))
.pipe(gulp.dest('build/'));
}
});
Sample XML:
<?xml version="1.0"?><IDMAP><RECORD>
<TOKEN data = "414"/><NAME data="existing_value1"/></RECORD>
<RECORD><TOKEN data = "420"/><NAME data="existing_value2"/></RECORD>
<RECORD><TOKEN data = "361"/><NAME data="existing_value3"/></RECORD>
</IDMAP>
With this code, I'm able to replace the string in XML with the last item in array. How to replace all the items with the ones in array and then do the build?
Thanks in advance!
Each time your for loop run it overwrite the dest file. That's why you have replaced only the last item in your array.
gulp-replace only support
String
orRegExp
as a search parameter. Therefore I would suggest that you write your own plugin. It would be something like this: