Distance Between Characters in String

4 views (last 30 days)
RDG
RDG on 30 Aug 2016
Edited: Stephen23 on 30 Aug 2016
Thank you for your help in advance. Suppose I have two strings namely, Source and Target,
Source: abcde
Target: hello
Is there a function for me to calculate the distance between the characters (using alphabetical series) in Source and Target?
Example answer: [7][3][9][8][10]
Explanation: [8-1][5-2][12-3][12-4][15-5]

Accepted Answer

Stephen23
Stephen23 on 30 Aug 2016
Edited: Stephen23 on 30 Aug 2016
>> 'hello' - 'abcde'
ans =
7 3 9 8 10
Explanation: in MATLAB character arrays are arrays just like numeric arrays, so many mathematical operations can be performed on them. Read about character arrays:
If you want the edit distance, then use this algorithm:
  1 Comment
RDG
RDG on 30 Aug 2016
Thank you for such a simple and elegant solution!

Sign in to comment.

More Answers (0)

Categories

Find more on Operators and Elementary Operations in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!