- Solution (sln) file.
- Solution user Options (.suo) file.
- Project configuration file (.vbproj) or .vcproj file
- .aspx, .asmx, .ascx
- .aspx.vb or .aspx.cs - code behind fiels
- globax.asax
- resouce file .resx
- other files .txt, .rpt
- style .css files
- congig file web.config.
- discovery file .disco or .vbdisco
- Project Assembly files (.dll)—All of the code-behind files (.aspx.vb and .aspx.cs) in a project are compiled into a single assembly file that is stored as ProjectName.dll. This project assembly file is placed in the /bin directory of the Web application.
- AssemblyInfo.vb or AssemblyInfo.vb or AssemblyInfo.cs—The AssemblyInfo file is used to write the general information, specifically assembly version and assembly attributes, about the assembly.
Oracle implementation of Regular expression has no support for using hexadecimal code to search for Unicode characters. The only way to search for Unicode character is it use the character itself. Normally with Regular expression, you can use \x or \u followed by hexadecimal code to search for any character. E.g. \x20 will match space. But REGEXP_LIKE in Oracle does not support \x. You need to use unistr function to convert the code to equivalent character and then use it with REGEXP_LIKE. E.g. REGEXP_LIKE(source,'[' ||unistr('\0020')|| ']');
Comments