Examples
- Adding missing ApplicationArea to Pages and Page Extensions controls:
- Find: (action|part|systempart|field)(\()((.)*(\s)*(\n)*(\{))[\s]*((?![^{0}]*ApplicationArea[^{0}]*\})[^{0}]*)(\})
- Replace: $1$2$3ApplicationArea = Basic, Suite;$8$9
- Use Regular Expression: Yes
- Files to Include: Your Page and Page Extension project directories.
2. Adding missing DataClassification to Table and Table Extension Fields:
- Find: (field)(\()((.)*(\s)*(\n)*(\{))[\s]*((?![^{0}]*DataClassification[^{0}]*\})[^{0}]*)(\})
- Replace: $1$2$3DataClassification = CustomerContent;$8$9
- Use Regular Expression: Yes
- Files to Include: Your Table and Table Extension project directories.
3. Removing [Scope(Internal)] from procedures:
- Find: [Scope(‘Internal’)]
- Replace: (empty)
4. Switch Report RDLC or WordLayout path:
- Find: (RDLCLayout|WordLayout)( = )(.)*\/
- Replace: $1=’src/Report/Layout/
- Use Regular Expression: Yes
5. Removing ID’s from procedures, parameters and variables when copying from txt file exported from C/SIDE.
- Find: (@(\d+))
- Replace: (empty)
- Use Regular Expression: Yes