How can I compare two strings, ignoring any white space or punctuation characters?

103 次查看(过去 30 天)
I would like to compare two strings. The strings may have varying numbers of spaces and punctuation characters (not necessarily at the beginning or end of the string), which I would like to ignore.

采纳的回答

MathWorks Support Team
编辑:MathWorks Support Team 2021-11-16
You can use regular expressions to remove the characters from the strings that you would like to ignore in the comparison. You can then use the modified strings to perform the comparison.
The following example illustrates how you can use regular expressions to remove white space and punctuation characters from a string. The REGEXP function is used to match the regular expression:
a = 'test';
b = 'te s.t';
%Create a regular expression
%This expression matches any character except a whitespace, comma, period, semicolon, or colon
exp = '[^ \f\n\r\t\v.,;:]*';
%Find the matches within the string
b1 = regexp(b, exp, 'match');
%Concatenate all matches into a single string
b1 = [b1{:}];
%Repeat above for the other string
a1 = regexp(a, exp, 'match');
a1 = [a1{:}];
%Compare the modified strings
match = strcmp(a1, b1)
To learn more about creating regular expressions and using the REGEXP function, please see the following documentation pages:
>>web(fullfile(docroot, 'matlab/ref/regexp.html'))
  3 个评论
Walter Roberson
Walter Roberson 2019-3-2
John: No, if you 'split' with that expression, you would be left only with emptiness and the punctuations. You would need to remove the ^ from the inside of the [] to use 'split'
Walter Roberson
Walter Roberson 2019-3-2
编辑:MathWorks Support Team 2023-5-2
exp = '[^ \f\n\r\t\v.,;:]*';
can also be written
exp = '[^\s.,;:]*'
The \s is documented as being equivalent to [ \f\n\r\t\v]
Any time you use the [^] construct, you need to be careful about unicode, which has a number of ways to express white space https://jkorpela.fi/chars/spaces.html and https://www.compart.com/en/unicode/category/Po punctuation. For example ':' is not a colon ':' and is instead U+16EC Runic Multiple Punctuation

请先登录,再进行评论。

更多回答(0 个)

类别

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

标签

尚未输入任何标签。

产品


版本

R2009b

Community Treasure Hunt

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

Start Hunting!

Translated by