Java - Regular expression question
Posted
by Jacob
on Stack Overflow
See other posts from Stack Overflow
or by Jacob
Published on 2010-06-13T21:29:37Z
Indexed on
2010/06/13
21:32 UTC
Read the original article
Hit count: 179
I am new to regular expressions. I want to use java's replaceAll() function to replace any CSS comments in a string.
Basically I want to use regex to search for anything that is surrounded by "/*
" and "*/
" and replace it with "".
© Stack Overflow or respective owner