19 lines
462 B
C#
19 lines
462 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Lab4.RemoveVowels
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
const string CFd = "Duomenys.txt";
|
|
const string CFr = "Rezultatai.txt";
|
|
const string CFa = "Analize.txt";
|
|
const string vowels = "AEIYOUaeiyouĄąĘęĖėĮįŲųŪū";
|
|
char[] punctuation = {' ', '.', ',', '!', '?', ':', ';', '(', ')', '\t'};
|
|
TaskUtils.Process(CFd, CFr, CFa, punctuation, vowels);
|
|
}
|
|
}
|
|
}
|