Hi folks
I write because I have this problem, I start getting data from Wikipedia, to then try to get them in the following manner, the first year after the title and the other elements as a character, the producer left as they are,
filmorani =
Import["http://en.wikipedia.org/wiki/Rani_Mukerji_filmography",
"Data"][[1, 1, 2]];
Here I attempt to the order that I want to but does so only for the first two data from the list and the third in the forward left unchanged, I would like you to help me make the change to all so that it is on the order that I need
filmorani =
filmorani /. {a_, b_, c_, d_, e_, f_} -> {b, a, c, d, e, f}
thanks in advance!