Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/SeanDragon/protools
/ toLower
Method
toLower
common/src/main/java/pro/tools/data/text/ToolStr.java:252–258 ·
view source on GitHub ↗
变全小写 @param s @return
(String s)
Source
from the content-addressed store, hash-verified
250
* @
return
251
*/
252
public
static
String toLower(String s) {
253
if
(isBlank(s)) {
254
return
""
;
255
}
256
257
return
s.toLowerCase();
258
}
259
260
/**
261
* 反转字符串
Callers
nothing calls this directly
Calls
1
isBlank
Method · 0.95
Tested by
no test coverage detected