how to remove the last string after "." character include the "." character itself
implementation can be with sed under Linux/Solaris operation system
example of IP address before change
192.9.200.1 ( need to remove the .1 )
expected results
192.9.200
other example
100.2.2.101FFF
expected results
100.2.2
Why sed? How about manipulating with bash parameter expansion?
maybe with cut instead of sed?
if it has to be sed