Skip to content

Latest commit

 

History

History
25 lines (13 loc) · 331 Bytes

File metadata and controls

25 lines (13 loc) · 331 Bytes

Funzione trim

Rimuove tutti gli spazi vuoti (spazi, tabulazioni, etc.) all'inizio e alla fine di una stringa.

Sintassi

trim(string)

Argomenti

  • string stringa da troncare

Esempi

  • trim(' hello world ') → 'hello world'

nota bene

--

osservazioni

--