How to create a directory using mobile number of a particular username..
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I need how to create a directory with the name of user's mobile number. suppose the user mobile number is 8511356595. the same number must be a foldername of that user to differentiate the next user. when I'm getting this mobile number from the database it is displaying like this [8.5114e+09]. When I create a folder using mkdir command, asking argument must be a string... Please help me.....
0 commentaires
Réponses (2)
Guillaume
le 28 Mar 2017
Modifié(e) : Guillaume
le 28 Mar 2017
Well, obviously, you need to convert the number to a string, which can be done with any of the many functions that do it:
foldername = sprintf('%d', mobilenumber);
or
foldername = num2str(mobilenumber);
or
foldername = compose('%d', mobilenumber);
Also, read about the format command which changes how the numbers are displayed in the command window only, not how they're stored.
1 commentaire
Voir également
Catégories
En savoir plus sur File Operations dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!