Retourner au contenu associé (journal : Bref, j'ai fait un script python.)
Posté par BB le 22 novembre 2011 à 11:58. En réponse au journal Bref, j'ai fait un script python.. Évalué à 1.
echo -n $FILENAME|tr -cd '[:print:]'
En python : > a = 'Téléchargements' > u = a.decode('utf-8') > u.encode('ascii', 'ignore') : 'Tlchargements'
Après pour éliminer les accents, je crois qu’il n’y a pas le choix faut construire un table de correspondance.
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
[^] # Re: Thanks...
Posté par BB . En réponse au journal Bref, j'ai fait un script python.. Évalué à 1.
echo -n $FILENAME|tr -cd '[:print:]'
En python :
> a = 'Téléchargements'
> u = a.decode('utf-8')
> u.encode('ascii', 'ignore')
: 'Tlchargements'
Après pour éliminer les accents, je crois qu’il n’y a pas le choix faut construire un table de correspondance.