How can i remove the last <br> from a string with replace() or replaceAll()
the <br> comes after either a <br> or a word
my idea is to add a string to the end of a string and then it'll be <br> +my added string
how can i replace it then?
|
|
Regexp is probably not the best for this kind of task. also check answers to this similar question.
|
||||
|
|
|
If you are trying to replace the last
Output
Ofcourse, you'll have to add some checks to to avoid NPE. |
|||
|
|
|
Not using
|
|||
|
|