functions-online

trim

description

trim() retourne la chaîne $str, après avoir supprimé les caractères invisibles en début et fin de chaîne. Si le second paramètre $charlist est omis, trim() supprimera les caractères suivants :

  • " " (ASCII 32 (0x20)), un espace ordinaire.
  • "\t" (ASCII 9 (0x09)), une tabulation.
  • "\n" (ASCII 10 (0x0A)), une nouvelle ligne (line feed).
  • "\r" (ASCII 13 (0x0D)), un retour chariot (carriage return).
  • "\0" (ASCII 0 (0x00)), le caractère NUL.
  • "\x0B" (ASCII 11 (0x0B)), une tabulation verticale.

déclaration d' trim

string trim ( string $str [, string $charlist ] )

essai trim en ligne







participer trim

commentaire pour trim

+

Leave your comment