Skip to content

Instantly share code, notes, and snippets.

View ruleechen's full-sized avatar
🎯
Focusing

Rulee Chen ruleechen

🎯
Focusing
  • RingCentral
  • Xiamen, China
View GitHub Profile
@ruleechen
ruleechen / toupper.bat
Last active October 14, 2016 02:42
CMD Batch file implementation of toupper() and tolower()
@echo off & SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION
SET STR=Test String
SET STR
call :tolower STR
SET STR
call :toupper STR
set STR
goto :EOF