I have tried with [\s]+$
and (?:$|\s)+$
but i don't get the desired output.
What i am looking for is
String str ="this is a string ending with multiple newlines\n\n\n"
the new line can be : \n
or \r
or \r\n
depending on OS so we use \s+
here.
I need to find all the newline chars from end of the string and i have to use it in Java Code