/ Published in: Other
                    
                                        
This example attempts to reorder pointer declarations so that the asterisk is adjacent to the class name.  It searches for a letter, asterisk and space, and a letter.  It replaces that group with the initial letter, "* ", and the final letter.
Parentheses in the regular expressions register a group number.
The regular expression used here only matches letters. Add 0-9 in the square brackets to search for numbers as well.
                Parentheses in the regular expressions register a group number.
The regular expression used here only matches letters. Add 0-9 in the square brackets to search for numbers as well.
                            
                                Expand |
                                Embed | Plain Text
                            
                        
                        Copy this code and paste it in your HTML
Find: ([a-zA-Z])([* ]{2})([a-zA-Z])
Replace: \1\* \3
Example:
NSString *str
becomes...
NSString* str
Comments
 Subscribe to comments
                    Subscribe to comments
                
                