Aldo Chaman

Generation

generate functionTue, 01 Aug 2023

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

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

Want to kickstart your project?Use the new AI Studio to create your code