Question : Replace

Currently I have a replace method that removes space replace(/^\s*|\s*$/g,'')
Now my data consist of the following symbol [ " ] as shown below:

["Login Id":["tester04",
"NRIC":"N/A",
"Passport"]:"N/A"]

I would like to generate the following data using the replace method

Login Id:tester04,
NRIC:N/A,
Passport:N/A

Your help is kindly appreciated.

Thank You.

Answer : Replace

test page :

1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<script language="javascript">
	mystring = '["Login Id":["tester04",\n"NRIC":"N/A",\n"Passport"]:"N/A"]';
	pattern = new RegExp('\\[|\\]|\\"',"g");
	alert(mystring.replace(pattern,""));
</script>
</body>
</html>
Random Solutions  
 
programming4us programming4us