Problem 639. String substitution, sub problem to cryptoMath
This is a sub problem related to this problem:
http://www.mathworks.com/matlabcentral/cody/problems/621-cryptomath-addition
If you have a string
'cab'
and you have a mapping where you want:
'abc' to map to the digits [906]
then you will get this:
% 'cab' , 'abc', [906] --> [6 9 0];
Another example is:
% 'feed', 'def', [541] --> [1 4 4 5];
Your inputs will be of this form:
out = stringSubstitute(string, letters, digits)
>> stringSubstitute('feed','def',[5 4 1])
ans =
1 4 4 5
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers233
Suggested Problems
-
Select every other element of a vector
35181 Solvers
-
How to find the position of an element in a vector without using the find function
2773 Solvers
-
Getting the indices from a matrix
693 Solvers
-
Back to basics - mean of corner elements of a matrix
443 Solvers
-
Number of Even Elements in Fibonacci Sequence
1459 Solvers
More from this Author51
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!