How to change the encoding of a String using C# and VB.NET
To change the encoding of a String using .NET you can use this Extension Method which is part of the Fesslersoft.Extensions. This method needs a source and a target encoding.…
All the Code Snippets and Samples you need
To change the encoding of a String using .NET you can use this Extension Method which is part of the Fesslersoft.Extensions. This method needs a source and a target encoding.…
To read a embedded resource to String in C# and VB.NET you can use the snippet below. Keep in mind that this snippet is using Encoding.Default which might not always…
To match strings using wildcards in C# and VB.NET you can use the following snippet. It will internally convert the wildcard string to a Regex. The Console-Output of this sample…
To read a String to Textreader using C# and VB.NET you can use the snippet below. Sample C# Sample VB.NET
To split a delimited string to multiple rows using MSSQL you can use the snippet below. Sample MSSQL
Since XSL 1.0 dows not have inbuild Trimming functions for Strings, you need to define your own templates. You can use the Trim Templates shown in the codesnippet below. Sample…
To use substring in IOS using Objective-C you can use the snippet below. Sample Objective-C
Here you can find a Case-Insensitive String.Replace method for C# and VB.NET. Sample C# Sample VB.NET
To convert string to int using Objective-C you can use the snippet below. Sample Objective-C or you can do it like this.
To convert xml string to XmlNode in C# and VB.NET you can use the following snippet. Sample C# Sample VB.NET