How do you delete and space characters in Matlab Virtual Keyboard ?

6 ビュー (過去 30 日間)
Jeremy Tsang
Jeremy Tsang 2021 年 3 月 15 日
コメント済み: Uday Pradhan 2021 年 3 月 22 日
We are having trouble deleting and spacing characters in our Matlab virtual keyboard. When we want to press delete, the word delete appears in the keyboard instead of actually deleting characters. When we want to space out the characters in Matlab, the word space appears in the matlab code instead of actually spacing out the characters.

回答 (1 件)

Uday Pradhan
Uday Pradhan 2021 年 3 月 19 日
編集済み: Uday Pradhan 2021 年 3 月 19 日
Hi,
Just a naive try at what you asked, i hope it helps!
function AddLetter(letter)
%Called when letter pressed
%Add letter to string
str = get(hEdit,'string');
if strcmp(letter,'SPACE')
str(end+1) = ' ';
elseif strcmp(letter,'DELETE')
str(end) = '';
else
str = horzcat(str,letter);
end
set(hEdit,'string',str);
drawnow;
%NOTE: Obviously, you'll need to add features here such as
%backspace etc.
end
  2 件のコメント
Jeremy Tsang
Jeremy Tsang 2021 年 3 月 20 日
Hi there. The delete feature does not work. Any advice on how to get that part to work ?
Uday Pradhan
Uday Pradhan 2021 年 3 月 22 日
On my end, It works like a backspace key. I have just used the following logic:
>> str = 'hello world';
>> str(end) = '' %empty quote
str =
'hello worl'

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeDesktop についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by