Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Tiwarishashwat/InterviewCodes
/ defangIPaddr
Method
defangIPaddr
DefanginganIPAddress.java:2–5 ·
view source on GitHub ↗
(String address)
Source
from the content-addressed store, hash-verified
1
class
Solution {
2
public
String defangIPaddr(String address) {
3
return
address.replace(
"."
,
"[.]"
);
4
5
}
6
}
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected