Showing posts with label uppercase. Show all posts
Showing posts with label uppercase. Show all posts

Saturday, October 11, 2014

Lowercase strings in file

 Lowercase strings in text file using sed(works for cyrillic):
 sed -e 's/\(.*\)/\L\1/' file

Sunday, September 9, 2012

Python: cyrillic to lowercase/uppercase

 print unicode("ПРИВЕТ", encoding='utf-8').lower()