This shouldn't be too difficult, the Regexp is /\&\#x([0-9a-fA-F]+)\;/.
Once you have the captured number in a string, then you can use an NSScanner.
int value = NSNotFound;
[[NSScanner scannerWithString:capturedHexString] scanHexInt:&value];
NSString *decimalString = [NSString stringWithFormat:@"%d", value];
Hope that helps.
clarification
I'll pull this out as a simple function
static inline NSString *MyDecimalStringFromHexString(NSString *hexString)
{
unsigned value = NSNotFound;
[[NSScanner scannerWithString:hexString] scanHexInt:&value];
NSString *decimalString = nil;
if (value != NSNotFound)
decimalString = [NSString stringWithFormat:@"%d", value];
return decimalString;
}
Putting it all together
Here is a unit test which uses the regular expression /\&\#x([0-9a-fA-F]+)\;/, the category you linked, and the hex to decimal function I created to perform the substitution you want.
- (void)testHexEntityToDecimalEntity
{
NSString *input = @"This 
 is ઼ test";
NSString *expected = @"This is ઼ test";
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"\\&\\#x([0-9a-fA-F]+)\\;" options:0 error:nil];
NSString *actual = [regex stringByReplacingMatchesInString:input options:0 range:NSMakeRange(0, input.length) usingBlock:^NSString *(NSTextCheckingResult *result, NSMatchingFlags flags, BOOL *stop) {
NSRange hexRange = [result rangeAtIndex:1];
NSString *hexString = [input substringWithRange:hexRange];
NSString *decimalString = MyDecimalStringFromHexString(hexString);
return [NSString stringWithFormat:@"&#%@;", decimalString];
}];
STAssertEqualObjects(actual, expected, nil);
}