regexWed, 01 Mar 2023

in C# how remove all symbols and whitespaces from start and end

var regex = new Regex("^\\s+|\\s+$"); string str = regex.Replace(" hello world ", "");

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