I would like to trim a beginning and ending double quote (") from a string.
How can I achieve that in Java? Thanks!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You can use E.g.
To learn more about regular expressions, have al ook at http://regular-expression.info. That said, this smells a bit like that you're trying to invent a CSV parser. If so, I'd suggest to look around for existing libraries, such as OpenCSV. |
|||||||||||||||||||
|
|
To remove the first character and last character from the string, use:
|
|||||||||
|
|
find indexes of each double quotes and insert an empty string there. |
|||||
|
|