Skip to content

Tag: string

Java – splitting files by newline

How can I split file by newline? I’ve attempted to split by doing line.split(“\r?\n”) – but when I try printing the 0th index I get the entire file content when I was expecting just the first line. but if I try printing the result at index 0 I get the entire file content, when I expect…

Remove every space EXCEPT leading spaces

I need to remove every spaces from a String EXCEPT leading spaces. I have some strings that look like this : And I am trying to achieve this : That’s like a reverse trim(). What’s the most efficient way to go about it ? Answer You can use replaceAll with this regex (?<=S)(s+)(?=S) like this : E…