I have some html code that I want to replace at some point.
Such as
NSString *stringSHOW = @"width="353" height="500" width="131" height="204" width="777" width="369" width="888"/>";
Something like this. But I want to replace all [ width="any" to width="300" ].
Is there any way to do this ?
Take a look at the docs for NSRegularExpression and the
NSStringmethods which take regular expressions.