Added StringExtensions

This commit is contained in:
AaronJamesY 2017-02-10 19:05:26 +00:00
parent 5f47d4d66e
commit c2d69ceb71
2 changed files with 16 additions and 0 deletions

View file

@ -21,6 +21,7 @@
<DefineConstants>DEBUG;TRACE</DefineConstants> <DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport> <ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel> <WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType> <DebugType>pdbonly</DebugType>
@ -29,6 +30,7 @@
<DefineConstants>TRACE</DefineConstants> <DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport> <ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel> <WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Reference Include="System" /> <Reference Include="System" />
@ -62,6 +64,7 @@
<Compile Include="Contracts\IScriptManager.cs" /> <Compile Include="Contracts\IScriptManager.cs" />
<Compile Include="Enums\Provider.cs" /> <Compile Include="Enums\Provider.cs" />
<Compile Include="Enums\ResponseStatus.cs" /> <Compile Include="Enums\ResponseStatus.cs" />
<Compile Include="Extensions\StringExtensions.cs" />
<Compile Include="Helpers\AccountHelpers.cs" /> <Compile Include="Helpers\AccountHelpers.cs" />
<Compile Include="LoginCredentials\BarclaysLoginCredentials.cs" /> <Compile Include="LoginCredentials\BarclaysLoginCredentials.cs" />
<Compile Include="LoginCredentials\LloydsLoginCredentials.cs" /> <Compile Include="LoginCredentials\LloydsLoginCredentials.cs" />

View file

@ -0,0 +1,13 @@
using System;
using System.Text.RegularExpressions;
namespace BankingBot.Extensions
{
public static class StringExtensions
{
public static int AsInteger(this string str)
{
return int.Parse(Regex.Replace(str, @"[^\d]", ""));
}
}
}