# ngx_http_lower_upper_case **Repository Path**: cnkedao_admin/ngx_http_lower_upper_case ## Basic Information - **Project Name**: ngx_http_lower_upper_case - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-12-28 - **Last Updated**: 2021-12-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Nginx lower-/uppercase ------- This module simply uppercases or lowercases a string and saves it into a new variable. It knows only two directives: upper and lower Example =============== set $var1 "hello"; set $var2 "WORLD"; upper $var3 "$var1 $var2"; # $var3 will be "HELLO WORLD" lower $var4 "$var1 $var2"; # $var4 will be "hello world"