map first field to second field in txt file
Show older comments
hi,
I have this txt file :
1::Toy Story (1995) ::Animation|Children's|Comedy
2::Jumanji (1995) ::Adventure|Children's|Fantasy
8::Tom and Huck (1995) ::Adventure|Children's
I want to map for example 1 into animation, and 2 into adventure 8 into adventure i.e ,i need creat txtfile has two columns , the first column contains 1,2,8 and second column contains animation,adventure,adventure
please, how do that thanks in advance
Accepted Answer
More Answers (1)
huda nawaf
on 4 Aug 2012
Edited: Walter Roberson
on 4 Aug 2012
3 Comments
Walter Roberson
on 4 Aug 2012
textscan() will not work for this, at least not as-is. You can read the file (such as by using fileread() ) and then use regexp() to parse it.
per isakson
on 4 Aug 2012
Edited: per isakson
on 4 Aug 2012
See my answer above. I hope the lines you don't show don't contain "¤".
huda nawaf
on 5 Aug 2012
Categories
Find more on Large Files and Big Data in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!