Aldo Chaman

Generation

generate functionTue, 01 Aug 2023

genera una funcion que limpie de Ñ o ñ y simbolos en el texto q se le ingrese

public string cleanText(string text) { text = text.Replace('ñ', 'n'); text = text.Replace('Ñ', 'N'); return text; } cleanText("ñññññ")

Questions about programming?Chat with your personal AI assistant