using System.Collections.Generic;
public static void Main()
IList<Indicator> IndicatorList = new List<Indicator>() {
new Indicator(){ ObjID=1, IndicatorValue="1.8_s"},
new Indicator(){ ObjID=2, IndicatorValue="1.5S"},
new Indicator(){ ObjID=3, IndicatorValue="1.7_"},
new Indicator(){ ObjID=4, IndicatorValue="1.8_S"}
var lstResult = (from fx in IndicatorList
IndicatorValue = fx.IndicatorValue.Replace("S", "").Replace("_", "").Replace("s", "")
foreach (Indicator itemIndicator in lstResult)
Console.WriteLine("Shows Indicador "+ itemIndicator.IndicatorValue);
public int ObjID { get; set; }
public string IndicatorValue { get; set; }