Repeated regular expression
Posted
by javaguy
on Stack Overflow
See other posts from Stack Overflow
or by javaguy
Published on 2010-05-11T21:15:59Z
Indexed on
2010/05/12
3:04 UTC
Read the original article
Hit count: 283
How can I parse a strings like :
name1="val1" name2="val2" name3="val3"
I cannot use split(\s+)
as it can be name = "val 1"
.
I am doing java but any laguage is okay.
© Stack Overflow or respective owner