Tagged Questions

8
votes
5answers
779 views

Best way to convert string to array of object in javascript?

I want to convert below string to an array in javascript. {a:12, b:c, foo:bar} How do I convert this string into array of objects? Any cool idea?
5
votes
1answer
300 views

MySQL unicode literals

I want to insert a record into MySQL that has a non-ASCII Unicode character, but I'm on a terminal that doesn't let me easily type non-ASCII characters. How do I escape a Unicode literal in MySQL's ...
4
votes
2answers
770 views

In Python, what does preceding a string literal with “r” mean?

I first saw it used in building regular expressions across multiple lines as a method argument to re.compile, so I assumed that "r" stands for regex. For example: regex = re.compile( r'^[A-Z]' ...
3
votes
4answers
504 views

Properly match a Java string literal

I am looking for a Regular expression to match string literals in Java source code. Is it possible? private String Foo = "A potato"; private String Bar = "A \"car\""; My intent is to replace all ...
2
votes
8answers
1k views

Are hard-coded STRINGS ever acceptable?

Similar to Is hard-coding literals ever acceptable?, but I'm specifically thinking of "magic strings" here. On a large project, we have a table of configuration options like these: Name ...
0
votes
2answers
159 views

Convert javascript string to an array

I'm retrieving an array of objects from a hidden html input field. The string I'm getting is: "{"id":"1234","name":"john smith","email":"jsmith@blah.com"},{"id":"4431","name":"marry ...