using System.Collections.Generic;
using System.ComponentModel;
using System.Globalization;
using System.Text.RegularExpressions;
using static System.IO.Path;
using CSharpFunctionalExtensions;
using static PatientManagerMD.ResourceCentral.EnumHelper.CommonEnums;
using PatientManagerMD.ResourceCentral.DataHelper;
using PatientManagerMD.ResourceCentral.ExtensionMethods;
using PatientManagerMD.ResourceCentral.AppResource;
public static void Main()
Console.WriteLine("Hello World");
namespace PatientManagerMD.ResourceCentral.Services
public class ApplicationServices
public static XDocument XDoc { get; set; }
private string Path { get; set; }
private XMLDataServices XMLDataServices { get; set; }
public bool IsInMachineWithMappedDriveLetters { get; }
public ApplicationServices(XDocument sourceGenderFromFirstName, string pathXDoc)
XDoc = sourceGenderFromFirstName;
XMLDataServices = new XMLDataServices(pathXDoc);
IsInMachineWithMappedDriveLetters = System.IO.Directory.GetLogicalDrives().Any(name => name.Contains(":"));
#region Static XDoc dependency
public WhichGender LoadGenderInferredFromFirstName(string firstNameToTest)
var genderValue = PatientServices.ParseGenderFromStr(GetGenderFromFirstNameOrDefault(firstNameToTest));
public static WhichGender GetGenderFromName(string firstName)
if (string.IsNullOrEmpty(firstName) || !GenderCanBeInferred(firstName))
return WhichGender.Indeterminado;
return PatientServices.ParseGenderFromStr(GetGenderFromFirstNameOrDefault(firstName));
public int HowManyNameVsGenderCatalogued()
return XDoc.Descendants("NomevsSexo").Elements("PrimeiroNome").Count();
public bool GenderCannotBeInferred(string strToParseGender, WhichGender genderOfName)
return WhichGender.Indeterminado == (genderOfName != WhichGender.Indeterminado ? genderOfName : PatientServices.ParseGenderFromStr(strToParseGender));
public static bool GenderCanBeInferred(string strToParseGender)
return WhichGender.Indeterminado != PatientServices.ParseGenderFromStr(GenderStringFromFirstName(strToParseGender));
public static string GenderStringFromFirstName(string fullNameToTest)
var firstName = fullNameToTest.Split(' ')[0];
return GetGenderFromFirstNameOrDefault(firstName);
private static string GetGenderFromFirstNameOrDefault(string firstName)
return XDoc.Descendants("NomevsSexo").Where(x => x.Element("PrimeiroNome").Value == firstName).Select(y => y.Element("sexo").Value).FirstOrDefault();
public static WhichGender GenderFromFullName(string fullNameToTest)
return PatientServices.ParseGenderFromStr(GenderStringFromFirstName(fullNameToTest));
public static Maybe<WhichGender> GenderFromPatientJson(string patientFullName)
return Maybe<WhichGender>.None;
public static WhichGender ParseGenderFromStr(string genderToParse)
return PatientServices.ParseGenderFromStr(genderToParse);
public void DeleteFirstNameAndGenderFromXML(string nameToTest)
XMLDataServices.DeleteFirstNameAndGenderFromXML(nameToTest, XDoc);
public void AddFirstNameAndGenderToXML(string nameToTest, WhichGender genderOfName, LanguageName whichLanguage)
XMLDataServices.AddFirstNameAndGenderToXML(nameToTest, genderOfName, XDoc, whichLanguage);
public static List<string> PreposicoesNomeProprio()
var lines = File.ReadLines(fileToRead, Encoding.UTF8).ToList();
public static string FullNameInProperCase(string name)
var parts = name.Split(' ');
from line in File.ReadLines(fileToRead, Encoding.UTF8)let cleanedLines = line.RemoveBrackets()select cleanedLines;
var preposicoesNomeProprio = allLines.ToList();
var fullName = string.Empty;
foreach (var part in parts)
if (preposicoesNomeProprio.Contains(part))
fullName += part + space;
if (NameHasApostrophe(part))
fullName += char.ToUpper(part[0]) + "'" + part.Substring(2, part.Length - 2).CapitalizeFirstLetter() + space;
else if (part == "TESTE")
fullName += part + space;
fullName += part.CapitalizeFirstLetter() + space;
public static string ReturnCorrectFirstLetterOfNameThatHasApostrophe(string part) =>
char.ToUpper(part[2]).ToString();
public static bool NameHasApostrophe(string part)
public static DateTime MinBirthYearToStillBeAlive => DateTime.Now.AddYears(-119);
public static string HeaderRTFLatin => @"{\rtf1\ansi\ansicpg1252\deff0\deflang2070" + @"{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;}" + @"{\fonttbl{\f0\fnil\fcharset0 Microsoft Sans Serif;}}\viewkind4\uc1\pard\fs20 ";
public static string ConvertString2RTF(string input)
StringBuilder backslashed = new StringBuilder(input);
backslashed.Replace(@"\", @"\\");
backslashed.Replace(@"{", @"\{");
backslashed.Replace(@"}", @"\}");
StringBuilder sb = new StringBuilder();
foreach (char character in backslashed.ToString())
sb.Append("\\u" + Convert.ToUInt32(character) + "?");
public class KeyValuePair
public string Key { get; set; }
public string Name { get; set; }
public int Value { get; set; }
public static List<KeyValuePair> ListFrom<T>(bool splitCapitalizedWords = false)
var array = (T[])(Enum.GetValues(typeof(T)));
return array.Select(a => new KeyValuePair { Key = a.ToString(), Name = (splitCapitalizedWords ? a.ToString().SplitCapitalizedWords() : a.ToString()), Value = Convert.ToInt32(a) }).OrderBy(kvp => kvp.Value).ToList();
public static class XMLServices
public static int Position(this XNode node)
return node.NodesBeforeSelf().Count();
public static void SortElemByName(this XContainer container)
from childEl in container.Elements()
orderby childEl.Name.LocalName
foreach (XElement childEl in container.Elements().Where(e => e.HasElements))
public static void SortElementsByNameInPlace(this XContainer xContainer)
foreach (XElement element in xContainer.Descendants("NomevsSexo"))
from child in element.Elements()
element.Elements().Remove();
element.Add(orderedElements);
SortAllElements(this XContainer container)
from childEl in container.Elements()
foreach (XElement childEl in container.Elements().Where(e => e.HasElements))
SortAllElements(childEl);
public class XMLDataServices
public string Path { get; private set; }
public XMLDataServices(string path)
private void GuardClauseAgainstInjectorNotInitialized()
if (string.IsNullOrEmpty(Path))
throw new ArgumentNullException("Path não pode ser vazia!!!");
public void DeleteFirstNameAndGenderFromXML(string nameToTest, XDocument doc)
GuardClauseAgainstInjectorNotInitialized();
doc.Descendants("NomevsSexo").Where(x => x.Element("PrimeiroNome").Value == nameToTest).Remove();
catch (ArgumentNullException)
public void AddFirstNameAndGenderToXML(string nameToTest, WhichGender genderOfName, XDocument doc, LanguageName languageName)
GuardClauseAgainstInjectorNotInitialized();
var indexFirstNode = doc.Descendants("NomevsSexo").FirstOrDefault(x => string.Compare(x.Element("PrimeiroNome")?.Value, nameToTest) == -1)?.Position();
var indexNodeHigher = doc.Descendants("NomevsSexo").FirstOrDefault(x => string.Compare(x.Element("PrimeiroNome")?.Value, nameToTest) == 1)?.Position();
var nodeToAdd = new XElement("NomevsSexo", new XElement("PrimeiroNome", nameToTest, new XAttribute("Language", languageName.GetDescription())), new XElement("sexo", (int)genderOfName));
if (indexNodeHigher.HasValue && indexFirstNode.HasValue)
doc.Element("InfereSexoPorNome")?.Elements("NomevsSexo").ElementAt((int)(indexNodeHigher - indexFirstNode)).AddBeforeSelf(nodeToAdd);
doc.Element("InfereSexoPorNome")?.LastNode.AddAfterSelf(nodeToAdd);
public static class PatientServices
public static bool AddedIfNotAlreadyExists(ref List<long> nonRepeat, long numToTry)
var exists = nonRepeat.Any(l => l == numToTry);
public static long GetNonRepeatedIncrementalID(ref List<long> nonRepeat, long numToTry)
if (AddedIfNotAlreadyExists(ref nonRepeat, numToTry))
added = AddedIfNotAlreadyExists(ref nonRepeat, numToTry);
public static string WhichStringGender(OlGender genderToConvertToString)
return genderToConvertToString switch
OlGender.OlFemale => Enum.GetName(typeof(WhichGender), WhichGender.Feminino),
OlGender.OlMale => Enum.GetName(typeof(WhichGender), WhichGender.Masculino),
_ => Enum.GetName(typeof(WhichGender), WhichGender.Indeterminado),
public static WhichGender WhichGenderFromOutlook(OlGender genderToConvertToPatient)
return genderToConvertToPatient switch
OlGender.OlFemale => WhichGender.Feminino,
OlGender.OlMale => WhichGender.Masculino,
_ => WhichGender.Indeterminado,
public static WhichGender WhichGenderFromOutlook(int genderToConvertToPatient)
return genderToConvertToPatient switch
1 => WhichGender.Feminino,
2 => WhichGender.Masculino,
_ => WhichGender.Indeterminado,
public static WhichGender GetGenderFromOutlook(WhichGender appropriateGenderToUse)
if (appropriateGenderToUse == WhichGender.Feminino)
return (WhichGender)WhichGenderToFromOlk.Feminino;
if (appropriateGenderToUse == WhichGender.Masculino)
return (WhichGender)WhichGenderToFromOlk.Masculino;
if (appropriateGenderToUse == WhichGender.Indeterminado)
return appropriateGenderToUse;
return WhichGender.Indeterminado;
public static OlGender WhichGenderToOutlookEnum(WhichGender genderToConvertToOlk)
return genderToConvertToOlk switch
WhichGender.Feminino => OlGender.OlFemale,
WhichGender.Masculino => OlGender.OlMale,
_ => OlGender.OlUnspecified,
public static int WhichGenderToOutlookInt(WhichGender genderToConvertToOlk)
return genderToConvertToOlk switch
WhichGender.Feminino => 1,
WhichGender.Masculino => 2,
public static WhichGender ParseGenderFromStr(string genderToParse)
var genderValue = genderToParse?.ToLower();
var gender = WhichGender.Indeterminado;
switch (int.TryParse(genderValue, out _) ? "StringAsEnum" : string.IsNullOrEmpty(genderValue) ? "StringAsEnum" : genderValue.Length > 1 ? "StrToParse" : genderValue.Length == 1 ? "CharToParse" : "NotPossible")
gender = (WhichGender)Enum.Parse(typeof(WhichGender), genderValue ?? WhichGender.Indeterminado.ToString(), true);
if (feminino.Any(genderValue.Contains))
gender = WhichGender.Feminino;
else if (masculino.Any(genderValue.Contains))
gender = WhichGender.Masculino;
if (fem.Any(genderValue.Contains))
gender = WhichGender.Feminino;
if (masc.Any(genderValue.Contains))
gender = WhichGender.Masculino;
throw new ArgumentOutOfRangeException();
public static Maybe<WhichGender> GetGenderFromJsonOrParseFromName(string patientFullName)
if (!string.IsNullOrEmpty(patientFullName) && patientFullName.Contains(" ") && patientFullName.Length > 5)
return Maybe<WhichGender>.None;
var maybeGender = ApplicationServices.GenderFromPatientJson(patientFullName);
return maybeGender.HasNoValue ? ApplicationServices.GenderFromFullName(patientFullName) : maybeGender;
public static string WhichStringEtnia(WhichEtnia etniaToConvertToString)
return Enum.GetName(typeof(WhichEtnia), etniaToConvertToString);
public static string WhichStringTipoSang(WhichBloodType BloodTypeToConvertToString)
return Enum.GetName(typeof(WhichBloodType), BloodTypeToConvertToString);
public static string WhichStringFatorRh(WhichRhFactor RhFactorToConvertToString)
return Enum.GetName(typeof(WhichRhFactor), RhFactorToConvertToString);
namespace PatientManagerMD.ResourceCentral.DataHelper
public static class EnumPatient
public static Dictionary<int, string> GetAllValues(Enums whichType)
case Enums.WhichContactMethod:
return Utilities.EnumNamedValues<WhichContactMethod>();
case Enums.WhichContactType:
return Utilities.EnumNamedValues<WhichContactType>();
case Enums.CategoriaPaciente:
return Utilities.EnumNamedValues<PatientCategory>();
return Utilities.EnumNamedValues<HowToString>();
case Enums.HowToDisplayAge:
return Utilities.EnumNamedValues<HowToDisplayAge>();
return Utilities.EnumNamedValues<WhichGender>();
return Utilities.EnumNamedValues<WhichEtnia>();
case Enums.WhichBloodType:
return Utilities.EnumNamedValues<WhichBloodType>();
case Enums.WhichRhFactor:
return Utilities.EnumNamedValues<WhichRhFactor>();
throw new ArgumentOutOfRangeException(nameof(whichType), whichType, null);
public enum WhichContactMethod
public enum WhichContactType
[Description("Não informado")]
[Description("Trabalho")]
[Description("do Contato/Acompanhante")]
public enum WhichPhoneType
[Description("Residencial 1")]
[Description("Residencial 2")]
[Description("Celular principal")]
[Description("Celular 2")]
[Description("Trabalho 1")]
[Description("Trabalho 2")]
Business2TelephoneNumber,
[Description("Contato/Acompanhante 1")]
AssistantTelephoneNumber,
[Description("Contato/Acompanhante 2")]
Assistant2TelephoneNumber
public enum PatientCategory
[Description("Pacientes Meus")]
[Description("Pacientes de Colegas")]
[Description("Pacientes USA Consulate")]
Pacientes_USAConsulate = 3,
[Description("Pacientes outros")]
[Description("Nome todo")]
[Description("Só iniciais")]
[Description("Só primeiro nome")]
[Description("Só idade")]
[Description("Nome todo, idade")]
[Description("Iniciais, idade")]
[Description("Nome todo, idade, niver")]
FullNameWithAgeAndBirthDay
public enum HowToDisplayAge
[Description("Idade, com meses")]
[Description("Idade, com meses e dias")]
public enum WhichGenderToFromOlk
[Description("Não especificada")]
[Description("Indígena")]
public enum WhichBloodType
[Description("Não informado")]
public enum WhichRhFactor
namespace PatientManagerMD.ResourceCentral.AppResource
public static class Utilities
public static Dictionary<int, string> EnumNamedValues<T>()
var result = new Dictionary<int, string>();
var values = Enum.GetValues(typeof(T));
foreach (int item in values)
result.Add(item, Enum.GetName(typeof(T), item));
namespace PatientManagerMD.ResourceCentral.EnumHelper
namespace PatientManagerMD.ResourceCentral.ExtensionMethods
public static class StringTextExtensions
private const char OneBlankSpace = ' ';
public static string RemoveUnnecessarySpaces(this string textToTrim)
return Regex.Replace(textToTrim, @"\s+", " ").Trim();
public static string RemoveAllSpaces(this string textToTrim)
return textToTrim.Replace(" ", string.Empty);
public static string RemoveAllPunctuation(this string textToTrim)
return new string (textToTrim.Where(c => !char.IsPunctuation(c)).Where(c => !char.IsSymbol(c)).ToArray());
public static string GetRidOfNonLetterCharsInKeyOrPairElements(this string rawString) => rawString.RemoveAllPunctuation().RemoveAllSpaces().RemoveBrackets();
public static string GetNumberOfCharsJustBeforeSubstring(this string text, string beforeThis, int numberOfChars = 1)
txtBefore = text.GetUntilOrEmpty(beforeThis);
return txtBefore.Length > 0 ? text.GetUntilOrEmpty(beforeThis).Substring(txtBefore.Length - numberOfChars) : string.Empty;
Console.WriteLine($"GetNumberOfCharsJustBeforeSubstring error {ex.Message}: tried to subtract {txtBefore.Length} – {numberOfChars}");
public static string GetUntilOrEmpty(this string text, string stopAt = "-")
if (!string.IsNullOrWhiteSpace(text))
int charLocation = text.IndexOf(stopAt, StringComparison.Ordinal);
return text.Substring(0, charLocation);
public static string GetAfterOrEmpty(this string text, string stopAt = "-")
if (!string.IsNullOrWhiteSpace(text))
int charLocation = text.IndexOf(stopAt, StringComparison.Ordinal);
return text.Substring(charLocation + stopAt.Length, text.Length - charLocation - stopAt.Length);
public static string SubstituteSubstringAtSpecificPositionForAnother(this string text, string substringToReplace, string replacement, int position)
var sb = new StringBuilder(text);
sb.Remove(position, substringToReplace.Length).Insert(position, replacement);
public static string GetMiddleString(this string inputString, char separator = OneBlankSpace)
var input = inputString.Split(separator);
var firstToken = input[0];
var lastToken = input[input.Length - 1];
var pos1 = inputString.IndexOf(firstToken) + firstToken.Length;
var pos2 = inputString.IndexOf(lastToken);
var result = inputString.Substring(pos1, pos2 - pos1).Trim() ?? string.Empty;
public static bool NextCharAfterThisExcerpt(this string text, string uniqueExcerpt, char dot)
return text.ToLower().IndexOf(uniqueExcerpt, StringComparison.Ordinal) + uniqueExcerpt.Length < text.Length && text[text.ToLower().IndexOf(uniqueExcerpt, StringComparison.Ordinal) + uniqueExcerpt.Length] == dot;
public static bool NextCharAfterThisExcerpt(this string text, string uniqueExcerpt, char[] chars)
return text.ToLower().IndexOf(uniqueExcerpt, StringComparison.Ordinal) + uniqueExcerpt.Length < text.Length && chars.Contains(text[text.ToLower().IndexOf(uniqueExcerpt, StringComparison.Ordinal) + uniqueExcerpt.Length]);
public static string AddSubstringAfterThisFoundExcerpt(this string text, string uniqueExcerpt, string toAdd)
return text.ToLower().Replace(uniqueExcerpt, uniqueExcerpt + toAdd);
public static string RemoveSubstringAfterThisFoundExcerpt(this string text, string uniqueExcerpt, string toRemove)
return text.ToLower().Replace(uniqueExcerpt + toRemove, uniqueExcerpt);
public static string AddSubstringAfterThisFirstFoundExcerpt(this string text, string uniqueExcerpt, string toAdd)
var index = text.ToLower().IndexOf(uniqueExcerpt, StringComparison.Ordinal);
var firstPart = text.Substring(0, index);
var secondPart = text.Substring(index + uniqueExcerpt.Length);
return firstPart + uniqueExcerpt + toAdd + secondPart;
public static (string textBefore, string textAfter) GetTextBeforeAndAfterSubstring(this string textToExtract, string stringToSearchFor, int desiredLengthToCut, int indexToSearchedString)
var textBefore = textToExtract.Substring(indexToSearchedString - desiredLengthToCut < 0 ? 0 : indexToSearchedString - desiredLengthToCut, indexToSearchedString - desiredLengthToCut > 0 ? desiredLengthToCut : indexToSearchedString);
var textAfter = textToExtract.Substring(indexToSearchedString + stringToSearchFor.Length, DecideHowMuchItCanCutAfter(textToExtract.Length, indexToSearchedString + stringToSearchFor.Length, desiredLengthToCut));
return (textBefore, textAfter);
static int DecideHowMuchItCanCutAfter(int totalLength, int beginCut, int lengthToCut)
if (beginCut + lengthToCut < totalLength)
if (beginCut + lengthToCut >= totalLength)
return totalLength - beginCut;
public static string RemoveDiacritics(this string s)
string normalizedString = s.Normalize(NormalizationForm.FormD);
StringBuilder stringBuilder = new StringBuilder();
for (int i = 0; i < normalizedString.Length; i++)
char c = normalizedString[i];
if (CharUnicodeInfo.GetUnicodeCategory(c) != UnicodeCategory.NonSpacingMark)
return stringBuilder.ToString();
public static string RemoveBrackets(this string s)
return s.Replace("[", string.Empty).Replace("]", string.Empty);
public static string SurroundWithDoubleQuotes(this string text)
return SurroundWith(text, "\"");
public static string SurroundWith(this string text, string ends)
return ends + text + ends;
public static string EscapeSingleQuote(this string text)
return text.Replace("'", @"\'");
public static string AddSingleQuoteAsEscapeCharacter(this string text)
return text.Replace("'", @"''");
public static string EnsureOneSingleSpaceAtBegin(this string text)
return OneBlankSpace + text.TrimStart();
public static string CapitalizeFirstLetter(this string value)
char[] array = value.ToCharArray();
if (char.IsLower(array[0]))
array[0] = char.ToUpper(array[0]);
for (int i = 1; i < array.Length; i++)
if (char.IsLower(array[i]))
array[i] = char.ToUpper(array[i]);
return new string (array);
public static string SplitCapitalizedWords(this string source)
if (String.IsNullOrEmpty(source))
var newText = new StringBuilder(source.Length * 2);
newText.Append(source[0]);
for (int i = 1; i < source.Length; i++)
if (char.IsUpper(source[i]))
newText.Append(source[i]);
return newText.ToString();
public static string TrimLastCharacter(this String str) => String.IsNullOrEmpty(str) ? str : str.TrimEnd(str[str.Length - 1]);
public static IEnumerable<int> AllIndexesOf(this string str, string searchString)
int minIndex = str.IndexOf(searchString, StringComparison.Ordinal);
minIndex = str.IndexOf(searchString, minIndex + searchString.Length, StringComparison.Ordinal);
public static bool ContainsAny(this string @this, params string[] values)
foreach (string value in values)
if (@this.IndexOf(value) != -1)
public static int CountOccurrences(this string text, string pattern)
return (text.Length - text.Replace(pattern, "").Length) / pattern.Length;
public static bool ContainsAny(this string @this, StringComparison comparisonType, params string[] values)
foreach (string value in values)
if (@this.IndexOf(value, comparisonType) != -1)
public static bool DoesNotContainAnySpace(this string @this) => !@this.Any(char.IsWhiteSpace);
public static bool DoesNotContainAnyNumbers(this string @this) => @this.ReturnOnlyNumbers().Length == 0;
public static bool StringHasOnlyNumbers(this string @this) => @this.ReturnOnlyNumbers().Length == @this.Length;
public static bool ContainsOnly(this string @this, string allowedChars) => @this.All(allowedChars.Contains);
public static List<string> ReturnOnlyInvalidChars(this string @this, string allowedChars) => (
where !allowedChars.Contains(c.ToString())select c.ToString()).ToList();
public static string ReturnOnlyNumbers(this string @this) => new(@this.Where(char.IsDigit).ToArray());
public static int? ReturnOnlyNumbersAsInt(this string @this)
int.TryParse(@this.ReturnOnlyNumbers(), out var result);
public static string ReturnOnlyNonNumericCharacters(this string @this) => Regex.Replace(@this, @"[\d-]", string.Empty);
public static int[] ReturnOnlyNumbersToArray(this string @this) => Regex.Matches(@this, "(-?[0-9]+)").OfType<Match>().Select(m => int.Parse(m.Value)).ToArray();
public static int GetSingleDigitAtPositionInFilteredStrOnlyNumbers(this string @this, int position1Based)
if (position1Based < 1 || position1Based > @this.Length - 1)
throw new ArgumentOutOfRangeException(nameof(position1Based), $"{nameof(position1Based)} cannot be outer of string limits");
return int.Parse(@this.ReturnOnlyNumbers()[position1Based - 1].ToString());
public static string FormatPhoneNumber(this long number, string mask) => number.ToString(mask);
public static string FormatPhoneNumber(this string number)
var mask = number.ReturnOnlyNumbers().Length switch
15 => @"0 000 (00) 00000-0000",
13 => @"+00 (00) 00000-0000",
11 => @"(00) 00000-0000",
_ => throw new ArgumentOutOfRangeException(nameof(FormatPhoneNumber), "FormatPhoneNumber only accepts certain ranges of phone numbers"),
return long.Parse(number.ReturnOnlyNumbers()).FormatPhoneNumber(mask);
public static bool IsDate(this string @this, out DateTime date) => DateTime.TryParse(@this, out date);
public static bool IsDate(this string @this) => DateTime.TryParse(@this, out var date);
public static bool IsNumber(this string @this) => int.TryParse(@this, out var number);
public static bool IsDigit(this string @this) => @this.All(c => c >= '0' && c <= '9');
public static bool ContainsOnlyDigitsAndThisSubstring(this string @this, string substring)
var resultOk = @this.Contains(substring);
@this = @this.Replace(substring, string.Empty);
public static string ReturnParentFolder(this string pathSource)
return Path.GetFullPath(Path.Combine(pathSource, @"..\"));
public static string CombinePaths(this string pathWithRoot, string pathDistal)
var networkFolder = !pathWithRoot.Contains(":");
var pathOne = pathWithRoot.Split(@"\".ToCharArray(), StringSplitOptions.RemoveEmptyEntries);
var pathTwo = pathDistal.Split(@"\".ToCharArray(), StringSplitOptions.RemoveEmptyEntries);
var pathFinal = pathOne.Concat(pathTwo);
var preFinalPath = Path.Combine(pathFinal.ToArray());
return "\\\\" + preFinalPath;
return preFinalPath.Contains(":\\") ? preFinalPath : preFinalPath.Replace(":", ":\\");
public static class EasyOfficeFolderExtensions
public static string GetParentFolder(this string pathSource)
return Path.GetFullPath(Path.Combine(pathSource, @"..\"));
public static string CombinePaths(this string pathWithRoot, string pathDistal)
var networkFolder = !pathWithRoot.Contains(":");
var pathOne = pathWithRoot.Split(@"\".ToCharArray(), StringSplitOptions.RemoveEmptyEntries);
var pathTwo = pathDistal.Split(@"\".ToCharArray(), StringSplitOptions.RemoveEmptyEntries);
var pathFinal = pathOne.Concat(pathTwo);
var preFinalPath = Path.Combine(pathFinal.ToArray());
return "\\\\" + preFinalPath;
return preFinalPath.Contains(":\\") ? preFinalPath : preFinalPath.Replace(":", ":\\");
public static class ObjectTextExtensions
public static T ObjToEnum<T>(this object o, int unknown = 0)
T enumVal = (T)Enum.Parse(typeof(T), o.ToString());
return (T)Enum.ToObject(typeof(T), unknown);
return (T)Enum.ToObject(typeof(T), unknown);
public static bool IsDefined(this System.Enum value)
return Enum.IsDefined(value.GetType(), value);
public static int EnumToInt<TValue>(this TValue value)
where TValue : System.Enum => (int)(object)value;
public static TValue IntToEnum<TValue>(this int value)
where TValue : System.Enum => (TValue)(object)value;
public static T GetEnumValue<T>(this string value)
throw new Exception("T must be an enum");
if (Enum.IsDefined(t, value))
return (T)Enum.Parse(t, value);
public static T GetValueFromDescription<T>(this string description, bool throwException = true)
foreach (var field in typeof(T).GetFields())
if (Attribute.GetCustomAttribute(field, typeof(DescriptionAttribute))is DescriptionAttribute attribute)
if (attribute.Description == description)
return (T)field.GetValue(null);
if (field.Name == description)
return (T)field.GetValue(null);
throw new ArgumentException("Not found.", nameof(description));
public static string GetDescription(this Enum value)
FieldInfo field = value.GetType().GetField(value.ToString());
DescriptionAttribute attribute = Attribute.GetCustomAttribute(field, typeof(DescriptionAttribute)) as DescriptionAttribute;
return attribute == null ? value.ToString() : attribute.Description;
public static string GetDescription(this object e, Type enumType)
var fieldValue = enumType.GetField(Enum.GetValues(enumType).Cast<object>().Where(o => o.ToString() == e.ToString()).Select(o => o.ToString()).FirstOrDefault()).ToString();
FieldInfo field = enumType.GetField(fieldValue.Contains(" ") ? fieldValue.Split().Last() : fieldValue);
DescriptionAttribute attribute = Attribute.GetCustomAttribute(field, typeof(DescriptionAttribute)) as DescriptionAttribute;
return attribute == null ? e.ToString() : attribute.Description;
public static Dictionary<int, TValue> EnumToDictionary<TValue>(this TValue value)
where TValue : System.Enum
Type enumType = typeof(TValue);
var allEnumValues = enumType.GetEnumValues().Cast<TValue>();
var enumDL = new Dictionary<int, TValue>();
foreach (TValue val in allEnumValues.ToList())
enumDL.Add(val.EnumToInt(), val);
public static Dictionary<int, Enum> EnumToDictionaryNotGeneric(this Enum @enum)
Type enumType = @enum.GetType();
var allEnumValues = Enum.GetValues(@enum.GetType()).Cast<Enum>();
var enumDL = new Dictionary<int, Enum>();
foreach (var val in allEnumValues.ToList())
enumDL.Add(val.EnumToInt(), val);
public static Dictionary<int, T> EnumToDictionary<T>(this Type enumType)
var allEnumValues = enumType.GetEnumValues().Cast<T>();
var converter = new EnumConverter(enumType);
var enumDL = new Dictionary<int, T>();
foreach (T val in allEnumValues.ToList())
enumDL.Add(val.EnumToInt(), val);
public static IReadOnlyList<T> GetValues<T>()
return (T[])Enum.GetValues(typeof(T));