kreta/Kreta.BusinessLogic/Utils/ApaczaiMentoriTamogatoNyilatkozatReplacers.cs
2024-03-13 00:33:46 +01:00

32 lines
1.5 KiB
C#

using System.Text.RegularExpressions;
using Aspose.Words.Replacing;
namespace Kreta.BusinessLogic.Utils
{
public static class ApaczaiMentoriTamogatoNyilatkozatReplacers
{
public static Regex IntezmenyNeveRegex = new Regex("{intezmenyNeve}");
public static Regex IntezmenyCimeRegex = new Regex("{intezmenyCime}");
public static Regex IntezmenyOMAzonositoRegex = new Regex("{intezmenyOMAzonosito}");
public static Regex IntezmenyVezetoNeveRegex = new Regex("{intezmenyVezetoNeve}");
public static Regex TanuloNeveRegex = new Regex("{tanuloNeve}");
public static Regex TanuloOMAzonositoRegex = new Regex("{tanuloOMAzonosito}");
public static Regex TanuloOsztalyRegex = new Regex("{tanuloOsztaly}");
public static Regex MentorNeveRegex = new Regex("{mentorNeve}");
public static Regex MentorOMAzonositoRegex = new Regex("{mentorOMAzonosito}");
public static Regex MentorEmailcimRegex = new Regex("{mentorEmail}");
public static Regex MentorTelefonRegex = new Regex("{mentorTelefon}");
public static Regex KeltezesVarosRegex = new Regex("{keltezesVaros}");
public static Regex KeltezesDatumRegex = new Regex("{keltezesDatum}");
public static Regex AlairoSzemelyRegex = new Regex("{alairoszemely}");
public static FindReplaceOptions FindReplaceoptions = new FindReplaceOptions
{
MatchCase = true,
FindWholeWordsOnly = false,
ReplacingCallback = new WordTextReplacer(),
};
}
}