How to replace double quotes with two single quotes in string in MATLAB R2020 ?
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Divyesh pandav
il 7 Ott 2021
Commentato: Divyesh pandav
il 7 Ott 2021
a = regexprep(' "C:\Users\User's PC\Desktop\note.txt" ' , ' " ' , ' ' );
a = regexprep(' "C:\Users\User's PC\Desktop\note.txt" ' , ' " ' , '');
0 Commenti
Risposta accettata
Walter Roberson
il 7 Ott 2021
a = regexprep(' "C:\Users\User''s PC\Desktop\note.txt" ' , '"' , '''''' )
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Characters and Strings in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!