Strings with overlapping characters
4 次查看(过去 30 天)
显示 更早的评论
Hello,
Is it possible to have a negative space between the characters while concatenating a string? For example,
a1='a'
a2='b'
c=strcat(a1,a2)
ans
='ab'
But with negative spacing between the two strings, the characters 'a' and 'b' will overlap so that 'a' goes inside the circular part of b, instead of 'a' and 'b' getting placed side-by-side resulting in 'ab'.
Thanks.
0 个评论
采纳的回答
Walter Roberson
2020-11-8
No. Characters are code-points. Shapes of characters and spacing rules are presentation matters, usually listed as "font" information. This is similar to the fact that bold and underline and character colors are not part of unicode.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Characters and Strings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!