How can I remove the extra blank spaces from a text?

5 次查看(过去 30 天)
For example, I have the sentence ' I will go to the cinema' . I need this sentence to be written as 'I will go to the cinema'. I need to delete the extras spaces.

回答(1 个)

Geoff Hayes
Geoff Hayes 2022-5-3
@Tiziano dos Santos - you could perhaps use strsplit to split the string on the space character and will create a cell array of strings (the words from your sentence). You could then use join to combine the words with a space between each one (may also need to trim the string first).
There is also probably a clever (better way to do this using) regexprep command that will do the same thing. I tried it and it wasn't too difficult to do.
  2 个评论
Walter Roberson
Walter Roberson 2022-5-3
S = ' I will go to the cinema'
S = ' I will go to the cinema'
newS = regexprep(strtrim(S), '\s+', ' ')
newS = 'I will go to the cinema'

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Characters and Strings 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by