strlen()
Si applica a: ✅Microsoft Fabric✅Azure Esplora dati✅ Azure Monitor✅Microsoft Sentinel
Restituisce la lunghezza, espressa in caratteri, della stringa di input.
Nota
Questa funzione conta i punti di codice Unicode.
Sintassi
strlen(
source)
Altre informazioni sulle convenzioni di sintassi.
Parametri
Nome | Digita | Obbligatorio | Descrizione |
---|---|---|---|
source | string |
✔️ | Stringa per cui restituire la lunghezza. |
Valori restituiti
Restituisce la lunghezza, espressa in caratteri, della stringa di input.
Esempi
Stringa di lettere
print length = strlen("hello")
Output
length |
---|
5 |
Stringa di lettere e simboli
print length = strlen("⒦⒰⒮⒯⒪")
Output
length |
---|
5 |
Stringa con grapheme
print strlen('Çedilla') // the first character is a grapheme cluster
// that requires 2 code points to represent
Output
length |
---|
8 |