startsWith
📝 Syntaxe
📥 Argument d'entrée
📤 Argument de sortie
📄 Description
💡 Exemple
🔗 Voir aussi
🕔 Historique
Version
📄 Description
Last updated
Last updated
str = 'To make a mountain out of a molehill';
k = startsWith (str, 'in')
k = startsWith (str, 'to')
k = startsWith (str, 'to', 'IgnoreCase', true)
A = {'Nel', 'son'; 'Nelson', 'Modules'}
k = startsWith(A, 'Nel')
A = ["Nel", "son"; "Nelson", "Modules"];
k = startsWith(A, "Nel")