KitKat21 Client Регистрация 02.05.2017 Сообщения 263 Благодарностей 191 Баллы 43 05.03.2018 #1 Hi! How do I replace an empty space with nothing? Example: Text and text and text -> Textandtextandtext Thanks!
Hi! How do I replace an empty space with nothing? Example: Text and text and text -> Textandtextandtext Thanks!
morpheus93 Client Регистрация 25.01.2012 Сообщения 1 058 Благодарностей 244 Баллы 63 06.03.2018 #2 Try "Text processing - Replace" and leave the field "What to replace" empty and in "What to search" enter a white space. This should do the work See attached screenshot. Вложения replace.jpg 65,5 КБ Просмотры: 587
Try "Text processing - Replace" and leave the field "What to replace" empty and in "What to search" enter a white space. This should do the work See attached screenshot.
KitKat21 Client Регистрация 02.05.2017 Сообщения 263 Благодарностей 191 Баллы 43 06.03.2018 #3 @morpheus93 thanks, but that doesn't work. You can't leave the fields empty. (PS: to find an "empty space" you need to enter {-String.Space-} )
@morpheus93 thanks, but that doesn't work. You can't leave the fields empty. (PS: to find an "empty space" you need to enter {-String.Space-} )
EtaLasquera Client Регистрация 02.01.2017 Сообщения 526 Благодарностей 112 Баллы 43 12.03.2018 #4 On c# string.replace(' ','') works. If you plan to with regex, use Regex.Replace(string,@"\s+","")