CSharp examples for System:String Quote
Remove leading and trailing " from a string
using System.Web; using System.Text.RegularExpressions; using System.Globalization; using System.Extensions; using System.Web.Mvc; using System.Threading.Tasks; using System.Text; using System.Linq; using System.Collections.Generic; using System.Collections; using System;/*from ww w . j a v a 2s . c om*/ public class Main{ /// <summary> /// Remove leading and trailing " from a string /// </summary> /// <param name="input">String to parse</param> /// <returns>String</returns> public static string RemoveSurroundingQuotes(this string input) { if (input.StartsWith("\"") && input.EndsWith("\"")) { // remove leading/trailing quotes input = input.Substring(1, input.Length - 2); } return input; } }