waitbar uifigure the message input argument cannot support the char '_'

I want to use the waitbar uifigure to display some information,the message argument include the char '_',but it cannot display,and it can cause other adjacent char to also display exception. I want to know how to fix this problem?

 Risposta accettata

One way:
HdlWaitBar = waitbar(0,'Hello World A\_B\_C\_D...');
Another way:
str = 'Hello World A_B_C_D...';
str = strrep(str,'_','\_');
HdlWaitBar = waitbar(0,str);

Più risposte (0)

Categorie

Scopri di più su App Building in Centro assistenza e File Exchange

Prodotti

Release

R2020b

Richiesto:

il 6 Gen 2023

Commentato:

il 9 Gen 2023

Community Treasure Hunt

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

Start Hunting!

Translated by