map first field to second field in txt file
이전 댓글 표시
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
채택된 답변
추가 답변 (1개)
huda nawaf
2012년 8월 4일
편집: Walter Roberson
2012년 8월 4일
댓글 수: 3
Walter Roberson
2012년 8월 4일
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
2012년 8월 4일
편집: per isakson
2012년 8월 4일
See my answer above. I hope the lines you don't show don't contain "¤".
huda nawaf
2012년 8월 5일
카테고리
도움말 센터 및 File Exchange에서 Text Files에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!