ios 转义字符处理的相关问题

各位大神帮帮忙,项目中遇到一个问题,我有一个字符串是这样的,NSString *str=" length and height should be within 160cm.<br><br>Special Notice: The luggage rack of",这个字符串中有<br><br>这几个字符,我现在想把它转成<,>等这种,这么弄啊!谢谢各位大神

NSString* str = @"here be dragons";

[str componentsSeparatedByString:@" "];

for(NSString* s in str) NSLog(s); 这个可以拆分
NSArray *pathArray = [NSArray arrayWithObjects:@"here",

@"be", @"dragons", nil];

NSLog(@"%@",[pathArray componentsJoinedByString:@" "]); 这个可以拼接