UtilRegExPatternsExcludeDashInFilename Field
A pattern that matches any filename that does not contain a dash 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 ExcludeDashInFilename = "^([^-]*\.+(?<fileextension>([A-z\d])+))$"
Public Const ExcludeDashInFilename As String = "^([^-]*\.+(?<fileextension>([A-z\d])+))$"
Dim value As String
value = UtilRegExPatterns.ExcludeDashInFilename
public:
literal String^ ExcludeDashInFilename = "^([^-]*\.+(?<fileextension>([A-z\d])+))$"
static val mutable ExcludeDashInFilename: string
No code example is currently available or this language may not be supported.
Field Value
String