how to remove (.) from strings in matlab

7 次查看(过去 30 天)
about classify text document
  5 个评论
Image Analyst
Image Analyst 2016-12-18
Are you sure you don't want to do something like
str = 'I live in a city called hilla this city located in.the center of iraq it is not too large hilla contain many resturants in here road.these resturants make very good and delicious food.one of city that near by called najaf'
dotLocations = find(str == '.')
% Assume tos are periods - end of sentence.
% Make sure the next character is Capitalized
str(dotLocations+1) = upper(str(dotLocations+1))
% Now replace dot with dot space since sentences
% don't start immediately after a period.
str = strrep(str, '.', '. ')
% Make sure the string ends with a period.
if ~strcmp(strtrim(str(end)), '.')
% Get rid of leading and trailing spaces and end with a period.
str = [strtrim(str), '.']
end
Now there are some places where you have a period at places that don't make grammatical sense, like 'in.the' but unless you want to put in a grammar analyzer, it's not possible to know whether to remove that period or replace it with a space.
Same problem for where period are totall missing, like 'of iraq it is not'. Only a full grammatical analysis would know that it's supposed to be 'of iraq. It is not' and to add the period and capitalize the next sentence.

请先登录,再进行评论。

采纳的回答

Stephen23
Stephen23 2016-12-16
Use strrep, which is designed to perform the task that you want:
>> str = '.Hello.World.';
>> strrep(str,'.','')
ans = HelloWorld
  7 个评论
hiba rashed
hiba rashed 2016-12-17
编辑:Stephen23 2016-12-17
I have text but it doesn't work this is the code
I = textscan(f,'%s',100);
strrep(I{1},'.','');
I contain this:
I live in a city called hilla
this city located in.the center of iraq
it is not too large hilla contain many resturants
in here road.these resturants make very good and delicious
food.one of city that near by called najaf.
Stephen23
Stephen23 2016-12-17
编辑:Stephen23 2016-12-17
@hiba rashed: try something like this:
I = strrep(I{1},'.',' ')
I(end) = '.'

请先登录,再进行评论。

更多回答(1 个)

John BG
John BG 2016-12-16
do you mean this?
L='1.- Telegraph http://www.telegraph.co.uk/news/2016/12/13/spain-plans-replace-nazi-time-zone-gmt/';
>> L(L=='.')=[]
L =
1- Telegraph http://wwwtelegraphcouk/news/2016/12/13/spain-plans-replace-nazi-time-zone-gmt/
if you find this answer useful would you please be so kind to mark my answer as Accepted Answer?
To any other reader, please if you find this answer of any help solving your question,
please click on the thumbs-up vote link,
thanks in advance
John BG

类别

Help CenterFile Exchange 中查找有关 Startup and Shutdown 的更多信息

标签

尚未输入任何标签。

Community Treasure Hunt

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

Start Hunting!

Translated by