Clear Filters
Clear Filters

Compare string in different file

1 view (last 30 days)
Hi there I need matlab code to compare the input word with list (for example if the input word is BRB which is abbrivation )I want to search for BRB in Abbrivation list and replace it with the full stanser word

Accepted Answer

KSSV
KSSV on 26 Sep 2016
doc strcmp and strcmpi

More Answers (1)

Ebtesam Almansor
Ebtesam Almansor on 27 Sep 2016
= input('what is your name: ', 's');
str=native2unicode(n,'UTF-8');
c=strsplit(n); %tokenizer
%h=strfind('. ',c); % find this string
x = strmatch('لا',c);
TF = contains(c,'ا'); matches = c(TF);
help me with is please

Categories

Find more on Characters and Strings in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!