How to Search Blank Line ?
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi- Everyone
I use 'isempty' to find an empty line.
But there is a problem
The left Side File, detect Line 4
The right file is undetectable. 'Isempty' can not be detected if there is a space
Is there any way to detect both cases?
(left file) (right file)
0 Commenti
Risposte (1)
Walter Roberson
il 29 Mar 2023
Assuming a cell array
line_is_blank = cellfun(@(S)isempty(strtrim(S)), YourCellArray)
0 Commenti
Vedere anche
Categorie
Scopri di più su File Operations 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!