dalaev 8 ماه پیش
کامیت
e914cf38b5

+ 3 - 0
.gitignore.txt

@@ -0,0 +1,3 @@
+*/bin/
+*/obj/
+.idea

+ 150 - 0
readme.md

@@ -0,0 +1,150 @@
+**1.**
+
+```cs
+string s = "Бык тупогуб, тупогубенький бычок, у быка губа бела была тупа";
+Regex regex = new Regex(@"туп(\w*)");
+MatchCollection matches = regex.Matches(s);
+if (matches.Count > 0)
+{
+    foreach (Match match in matches)
+        Console.WriteLine(match.Value);
+}
+else
+{
+    Console.WriteLine("Совпадений не найдено");
+}
+```
+**Вывод в консоли**
+```cs
+тупогуб
+тупогубенький
+тупа
+```
+** **
+**2.**
+
+```cs
+string text = "One car red car blue car";
+string pat = @"(\w+)\s+(car)";
+Regex r = new Regex(pat, RegexOptions.IgnoreCase);
+Match m = r.Match(text);
+int matchCount = 0;
+while (m.Success)
+{
+    Console.WriteLine("Match"+ (++matchCount));
+    for (int i = 1; i <= 2; i++)
+    {
+    Console.WriteLine($"Group {i}='{m.Groups[i]}'");
+    }
+    m = m.NextMatch();
+}
+```
+**Вывод в консоли**
+```cs
+Match1
+Group 1='One'
+Group 2='car'
+Match2
+Group 1='red'
+Group 2='car'
+Match3
+Group 1='blue'
+Group 2='car'
+```
+** **
+**1.**
+
+```cs
+string pattern = @"^(?("")(""[^""]+?""@)|(([0-9a-z]((\.(?!\.))|[-!#\$%&'\*\+/=\?\^`\{\}\|~\w])*)(?<=[0-9a-z])@))" +
+                @"(?(\[)(\[(\d{1,3}\.){3}\d{1,3}\])|(([0-9a-z][-\w]*[0-9a-z]*\.)+[a-z0-9]{2,17}))$";
+while (true)
+{
+    Console.WriteLine("Введите адрес электронной почты");
+    string email = Console.ReadLine();
+ 
+    if (Regex.IsMatch(email, pattern, RegexOptions.IgnoreCase))
+    {
+        Console.WriteLine("Email подтвержден");
+        break;
+    }
+    else
+    {
+        Console.WriteLine("Некорректный email");
+    }
+}
+```
+**Вывод в консоли**
+```cs
+
+```
+** **
+**1.**
+
+```cs
+
+```
+**Вывод в консоли**
+```cs
+
+```
+** **
+**1.**
+
+```cs
+
+```
+**Вывод в консоли**
+```cs
+
+```
+** **
+**1.**
+
+```cs
+
+```
+**Вывод в консоли**
+```cs
+
+```
+** **
+**1.**
+
+```cs
+
+```
+**Вывод в консоли**
+```cs
+
+```
+** **
+**1.**
+
+```cs
+
+```
+**Вывод в консоли**
+```cs
+
+```
+** **
+**1.**
+
+```cs
+
+```
+**Вывод в консоли**
+```cs
+
+```
+** **
+**1.**
+
+```cs
+
+```
+**Вывод в консоли**
+```cs
+
+```
+** **

BIN
t5_regex/.vs/t5_regex/FileContentIndex/7d41a9db-be13-44f4-91ed-ed45bfbea4f7.vsidx


+ 0 - 0
t5_regex/.vs/t5_regex/FileContentIndex/read.lock


BIN
t5_regex/.vs/t5_regex/v17/.suo


+ 25 - 0
t5_regex/t5_regex.sln

@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.5.33627.172
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "t5_regex", "t5_regex\t5_regex.csproj", "{B7C1148B-AA4B-4652-83A9-136816EE180C}"
+EndProject
+Global
+	GlobalSection(SolutionConfigurationPlatforms) = preSolution
+		Debug|Any CPU = Debug|Any CPU
+		Release|Any CPU = Release|Any CPU
+	EndGlobalSection
+	GlobalSection(ProjectConfigurationPlatforms) = postSolution
+		{B7C1148B-AA4B-4652-83A9-136816EE180C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{B7C1148B-AA4B-4652-83A9-136816EE180C}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{B7C1148B-AA4B-4652-83A9-136816EE180C}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{B7C1148B-AA4B-4652-83A9-136816EE180C}.Release|Any CPU.Build.0 = Release|Any CPU
+	EndGlobalSection
+	GlobalSection(SolutionProperties) = preSolution
+		HideSolutionNode = FALSE
+	EndGlobalSection
+	GlobalSection(ExtensibilityGlobals) = postSolution
+		SolutionGuid = {6A748C2C-BD19-4948-B476-64113951DEB0}
+	EndGlobalSection
+EndGlobal

+ 6 - 0
t5_regex/t5_regex/App.config

@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<configuration>
+    <startup> 
+        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
+    </startup>
+</configuration>

+ 19 - 0
t5_regex/t5_regex/Program.cs

@@ -0,0 +1,19 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Runtime.InteropServices;
+using System.Text;
+using System.Text.RegularExpressions;
+using System.Threading.Tasks;
+
+namespace t5_regex
+{
+    internal class Program
+    {
+        static void Main(string[] args)
+        {
+            
+        }
+       
+    }
+}

+ 36 - 0
t5_regex/t5_regex/Properties/AssemblyInfo.cs

@@ -0,0 +1,36 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// Общие сведения об этой сборке предоставляются следующим набором
+// набора атрибутов. Измените значения этих атрибутов для изменения сведений,
+// связанные с этой сборкой.
+[assembly: AssemblyTitle("t5_regex")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("t5_regex")]
+[assembly: AssemblyCopyright("Copyright ©  2024")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
+// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
+// из модели COM задайте для атрибута ComVisible этого типа значение true.
+[assembly: ComVisible(false)]
+
+// Следующий GUID представляет идентификатор typelib, если этот проект доступен из модели COM
+[assembly: Guid("b7c1148b-aa4b-4652-83a9-136816ee180c")]
+
+// Сведения о версии сборки состоят из указанных ниже четырех значений:
+//
+//      Основной номер версии
+//      Дополнительный номер версии
+//      Номер сборки
+//      Номер редакции
+//
+// Можно задать все значения или принять номера сборки и редакции по умолчанию 
+// используя "*", как показано ниже:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]

BIN
t5_regex/t5_regex/bin/Debug/t5_regex.exe


+ 6 - 0
t5_regex/t5_regex/bin/Debug/t5_regex.exe.config

@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<configuration>
+    <startup> 
+        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
+    </startup>
+</configuration>

BIN
t5_regex/t5_regex/bin/Debug/t5_regex.pdb


+ 4 - 0
t5_regex/t5_regex/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs

@@ -0,0 +1,4 @@
+// <autogenerated />
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")]

BIN
t5_regex/t5_regex/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache


BIN
t5_regex/t5_regex/obj/Debug/t5_regex.csproj.AssemblyReference.cache


+ 1 - 0
t5_regex/t5_regex/obj/Debug/t5_regex.csproj.CoreCompileInputs.cache

@@ -0,0 +1 @@
+2f1b5aa9ca9324e732c8dc8ad98b9a6b4836d80a

+ 8 - 0
t5_regex/t5_regex/obj/Debug/t5_regex.csproj.FileListAbsolute.txt

@@ -0,0 +1,8 @@
+C:\Users\1\Desktop\t5_regex\t5_regex\t5_regex\bin\Debug\t5_regex.exe.config
+C:\Users\1\Desktop\t5_regex\t5_regex\t5_regex\bin\Debug\t5_regex.exe
+C:\Users\1\Desktop\t5_regex\t5_regex\t5_regex\bin\Debug\t5_regex.pdb
+C:\Users\1\Desktop\t5_regex\t5_regex\t5_regex\obj\Debug\t5_regex.csproj.AssemblyReference.cache
+C:\Users\1\Desktop\t5_regex\t5_regex\t5_regex\obj\Debug\t5_regex.csproj.SuggestedBindingRedirects.cache
+C:\Users\1\Desktop\t5_regex\t5_regex\t5_regex\obj\Debug\t5_regex.csproj.CoreCompileInputs.cache
+C:\Users\1\Desktop\t5_regex\t5_regex\t5_regex\obj\Debug\t5_regex.exe
+C:\Users\1\Desktop\t5_regex\t5_regex\t5_regex\obj\Debug\t5_regex.pdb

+ 0 - 0
t5_regex/t5_regex/obj/Debug/t5_regex.csproj.SuggestedBindingRedirects.cache


BIN
t5_regex/t5_regex/obj/Debug/t5_regex.exe


BIN
t5_regex/t5_regex/obj/Debug/t5_regex.pdb


+ 53 - 0
t5_regex/t5_regex/t5_regex.csproj

@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
+  <PropertyGroup>
+    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+    <ProjectGuid>{B7C1148B-AA4B-4652-83A9-136816EE180C}</ProjectGuid>
+    <OutputType>Exe</OutputType>
+    <RootNamespace>t5_regex</RootNamespace>
+    <AssemblyName>t5_regex</AssemblyName>
+    <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
+    <FileAlignment>512</FileAlignment>
+    <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
+    <Deterministic>true</Deterministic>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+    <PlatformTarget>AnyCPU</PlatformTarget>
+    <DebugSymbols>true</DebugSymbols>
+    <DebugType>full</DebugType>
+    <Optimize>false</Optimize>
+    <OutputPath>bin\Debug\</OutputPath>
+    <DefineConstants>DEBUG;TRACE</DefineConstants>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+    <PlatformTarget>AnyCPU</PlatformTarget>
+    <DebugType>pdbonly</DebugType>
+    <Optimize>true</Optimize>
+    <OutputPath>bin\Release\</OutputPath>
+    <DefineConstants>TRACE</DefineConstants>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+  </PropertyGroup>
+  <ItemGroup>
+    <Reference Include="System" />
+    <Reference Include="System.Core" />
+    <Reference Include="System.Xml.Linq" />
+    <Reference Include="System.Data.DataSetExtensions" />
+    <Reference Include="Microsoft.CSharp" />
+    <Reference Include="System.Data" />
+    <Reference Include="System.Net.Http" />
+    <Reference Include="System.Xml" />
+  </ItemGroup>
+  <ItemGroup>
+    <Compile Include="Program.cs" />
+    <Compile Include="Properties\AssemblyInfo.cs" />
+  </ItemGroup>
+  <ItemGroup>
+    <None Include="App.config" />
+  </ItemGroup>
+  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
+</Project>