I have a single resource file right now, but it will eventually grow to more. Each of the resource files will have a consistent pattern for the Name but the Value will be different, in most cases. Each of the resource files (*.resx) will be closely tied to classes i am building.
With that being said, the Name patterns are as such: Key?, SKey, UKey?, and SUKey.
Key?: ? could be any single character. Regex pattern would be something like thisKey[A-Z]UKey?: ? could be any single character. Similar toKey?SKey&SUKey: Only one of these names possible any of the Resource files
I really just want to know, what would be the best approach for extracting the values in the resource file as they will not always have every letter between A & Z?
Edited 2012-09-20 11:48AM CST
ResourceManager resmgr = project.resx_name.ResourceManager;
string[] mtch = resmgr.getstring("Key?").toarray<string>();
Then iterate through the array and build a string from the resulting matches. All of the specified Key patterns, above, will result in a string value regex pattern.
Edited 2012-09-22 9:00AM CST
Ok here is the logic i have so far, can anyone valid its viability? I havent finished building the other components of the class, so i am going to finish the development of them and then start testing hopefully middle to late next week.
ResourceSet rs = syntaxhighlighter.vbnet.ResourceManager.GetResourceSet( CultureInfo.CurrentCulture , true , true );
foreach( DictionaryEntry entry in rs ) {
if( Regex.IsMatch( entry.Key.ToString() , "Key" ) ) {
if( Regex.IsMatch( entry.Key.ToString() , "^Key[A-Z]" ) ) {
this._keys += entry.Value.ToString();
} else if( Regex.IsMatch( entry.Key.ToString() , "^SKey$" ) ) {
this._keys += entry.Value.ToString();
} else if( Regex.IsMatch( entry.Key.ToString() , "^UKey[A-Z]" ) ) {
this._ukeys += entry.Value.ToString();
} else if( Regex.IsMatch( entry.Key.ToString() , "^SUKey$" ) ) {
this._ukeys += entry.Value.ToString();
}
}
}
this._attr = @"<(.*\.)?(.+?)(Attribute)?(\((.*)?\))?>";
Resource.resx File
Name - Value
- KeyA - AddHandler|AddressOf|Alias|And|AndAlso|As
- SKey - #Const|#Else|#ElseIf|#End|#If|\=|\&|\&\=|*|*\=|/|/\=|\|\\=|\^|\^\=|+|+\=|-|-\=|>>|>>\=|\<\<|\<\<\=

scando you mean using a pattern match comparison? – GoldBishop Sep 20 '12 at 16:29