Either way is fine. You are not mutating the original object in either of the two methods.
If you call string.substring(0, string.length()), there is no reason why the original string cannot be returned.
The only contract you sigh sign with immutability is that once an object is created, it doesn't change.
