Strings with overlapping characters
조회 수: 1 (최근 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!