UtilRegExPatternsExcludeUnderscoreInFilename Field
A pattern that matches any filename that does not contain a underscore character (_).
For Example:
Match:
"Everybody.mp3"
Don't Match:
"Every_body.mp3"
Namespace: DevCase.Core.DataProcessing.RegExAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public const string ExcludeUnderscoreInFilename = "^([^_]*\.+(?<fileextension>([A-z\d])+))$"
Public Const ExcludeUnderscoreInFilename As String = "^([^_]*\.+(?<fileextension>([A-z\d])+))$"
Dim value As String
value = UtilRegExPatterns.ExcludeUnderscoreInFilename
public:
literal String^ ExcludeUnderscoreInFilename = "^([^_]*\.+(?<fileextension>([A-z\d])+))$"
static val mutable ExcludeUnderscoreInFilename: string
No code example is currently available or this language may not be supported.
Field Value
String