Tagged Questions

String literals concern the syntactic representation of literal constant strings in C and C++.

learn more… | top users | synonyms (1)

31
votes
5answers
17k views

C++ multiline string literal

Is there any way to have multiline plaintext constant literals in C++, ala Perl? Maybe some parsing trick with #includeing a file? I can't think of one, but boy, that would be nice. I know it'll be in ...
28
votes
6answers
884 views

Inconsistency between std::string and string literals

I have discovered a disturbing inconsistency between std::string and string literals in C++0x: #include <iostream> #include <string> int main() { int i = 0; for (auto e : ...
15
votes
1answer
542 views

Unicode encoding for string literals in C++11

Following a related question, I'd like to ask about the new character and string literal types in C++11. It seems that we now have four sorts of characters and five sorts of string literals. The ...
12
votes
7answers
2k views

Where do Java and .NET string literals reside?

A recent question about string literals in .NET caught my eye. I know that string literals are interned so that different strings with the same value refer to the same object. I also know that a ...
11
votes
4answers
161 views

How do I generate an integer from a string literal at compile-time?

In C++, is it possible to generate an integer from a string literal using only compile-time facilities ? For instance, if all we have is the literal "6", is there some way to use it as a template ...
11
votes
1answer
195 views

Can a string literal be subscripted in a constant expression?

This is valid, because a constexpr expression is allowed to take the value of "a glvalue of literal type that refers to a non-volatile object defined with constexpr, or that refers to a sub-object of ...
10
votes
3answers
166 views

PHP string constants overuse?

I have two particular cases where I disagree with a coworker, whether constants should be used or not. We use a homemade framework working roughly like Symfony 1.x. Initial code was, in a routing ...
10
votes
3answers
355 views

String literals not allowed as non type template parameters

The following quote is from C++ Templates by Addison Wesley. Could someone please help me understand in plain English/layman's terms its gist? Because string literals are objects with internal ...
10
votes
4answers
838 views

C++: Constructor accepting only a string literal

Is it possible to create a constructor (or function signature, for that matter) that only accepts a string literal, but not an e.g. char const *? Is it possible to have two overloads that can ...
9
votes
5answers
2k views

C/C++, can you #include a file into a string literal?

I have a C++ source file and a Python source file. I'd like the C++ source file to be able to use the contents of the Python source file as a big string literal. I could do something like this: char* ...
8
votes
6answers
143 views

Checking For Equal Instances of 2 Different (Included Example)

I use the == in the code below and prints out "Equals!", why? Can someone explain why these two different strings a and b are equal? public class test { public static void main() { ...
8
votes
5answers
780 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?
7
votes
4answers
306 views

char four[4] = “four”; What are the correct semantics for this statement?

int main(void) { char four[4] = "four"; return 0; } When compiled as a C++ program, G++ reports xxx.cpp: In function int main(): xxx.cpp:3: error: initializer-string for array of chars is ...
7
votes
5answers
2k views

C String literals: Where do they go?

I have read a lot of posts about "string literals" on SO, most of which have been about best-practices, or where the literal is NOT located in memory. I am interested in where the string DOES get ...
6
votes
2answers
237 views

Assigning string literals to char*

Is the following code legal, deprecated or illegal in C++0x? char* p = "foobar"; I originally asked this question here as a comment.
6
votes
2answers
936 views

How safe and reliable are C++ String Literals?

So, I'm wanting to get a better grasp on how string literals in C++ work. I'm mostly concerned with situations where you're assigning the address of a string literal to a pointer, and passing it ...
6
votes
1answer
2k views

How to encode Unicode character codes in a Powershell string literal?

How can I encode the Unicode character U+0048 (H), say, in a Powershell string? In C# I would just do this: "\u0048", but that doesn't appear to work in Powershell.
5
votes
1answer
192 views

Unicode string literals

C++11 introduces a new set of string literal prefixes (and even allows user-defined suffixes). On top of this, you can directly use Unicode escape sequences to code a certain symbol without having to ...
5
votes
2answers
359 views

Search cost of string interning and declaration of literal strings

Two Questions. When we declare literal strings, we search whether there is the same string in string pool of heap. Is this also an interning (method intern of class String)? In my thought, each ...
5
votes
2answers
806 views

conflicts: definition of wchar_t string in C++ standard and Windows implementation?

From c++2003 2.13 A wide string literal has type “array of n const wchar_t” and has static storage duration, where n is the size of the string as defined below The size of a wide string ...
5
votes
1answer
302 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 ...
5
votes
6answers
3k views

Why is passing a string literal into a char* argument only sometimes a compiler error?

I'm working in a C, and C++ program. We used to be compiling without the make-strings-writable option. But that was getting a bunch of warnings, so I turned it off. Then I got a whole bunch of errors ...
5
votes
3answers
4k views

Regular expression for a string literal in flex/lex

I'm experimenting to learn flex and would like to match string literals. My code currently looks like: "\""([^\n\"\\]*(\\[.\n])*)*"\"" {/*matches string-literal*/;} I've been struggling with ...
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]' ...
4
votes
6answers
697 views

c++: generating string literals from template parameters

template < unsigned int i > struct t { static const char *s; }; template < unsigned int i > const char* t<i>::s = ...; where ... is "0 1 2 ... i-1", for example "0 1 2 3 4" for ...
4
votes
5answers
557 views

Implementation of string literal concatenation in C and C++

AFAIK, this question applies equally to C and C++ Step 6 of the "translation phases" specified in the C standard (5.1.1.2 in the draft C99 standard) states that adjacent string literals have to be ...
4
votes
4answers
334 views

What's the u prefix in a python string

Like in: u'Hello' My guess is that it indicates "unicode", is it correct? If so, since when is it available?
3
votes
4answers
97 views

What's the counterpart in Java of C#'s @ string literal?

C# has the @ string literal to flexibly handle escape characters in strings. Is there anything like that in Java?
3
votes
2answers
101 views

Why do I get a complier warning for converting a string literal to a char*, is it bad?

So the compiler tells me this is a deprecated conversion from a string-literal to char*: char* myString = "i like declaring strings like this"; Should I be worried about this? Is this the wrong ...
3
votes
1answer
95 views

Is it possible to use a value for a @RequestMapping that is a String but not a String literal?

Is there a way to use an Enum value in a RequestMapping? @RequestMapping(value = "/example", method = RequestMethod.POST) public final void foo(final HttpServletResponse response, I want to use a ...
3
votes
2answers
72 views

Why isn't “\400” a compile-time error?

Character values between 0 and 255 can be denoted by octal literals from "\000" to "\377". So shouldn't "\400" be a compile-time error? Eclipse does not complain, however... what's going on here?
3
votes
2answers
307 views

WPF: StringFormat is ignored

This is my binding (shortened, Command-Property is also bound) <MenuItem Header="Key" CommandParameter="{Binding StringFormat='Key: {0}', Path=PlacementTarget.Tag, RelativeSource={RelativeSource ...
3
votes
4answers
506 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 ...
3
votes
4answers
1k views

What does assigning a literal string to an NSString with “=” actually do?

Greetings, I'm sure that this is probably an incredibly stupid question, but... What does the following line actually do? string = @"Some text"; Assuming that "string" is declared thusly in the ...
3
votes
2answers
3k views

Tricky Python string literals in passing parameter to timeit.Timer() function

I'm having a hard time with the setup statement in Python's timeit.Timer(stmt, setup_stmt). I appreciate any help to get me out of this tricky problem: So my sniplet looks like this: def ...
3
votes
3answers
427 views

Searching For String Literals

In the quest for localization I need to find all the string literals littered amongst our source code. I was looking for a way to script this into a post-modification source repository check. (I.E. ...
2
votes
3answers
39 views

String literals without having to escape special characters?

Is there a string literal form in Objective-c that does not require escaping special characters? In other words, I'm looking for an equivalent to the Python triple quote. I'm trying to put some HTML ...
2
votes
2answers
124 views

ANSI C: Pointers to strings literals [closed]

Possible Duplicate: Are string literals const? Is the following valid in ANSI C? #include <stdio.h> /* This returns "Hans" if arg != 0, "Gretel" if arg == 0 */ char* foo(int arg) { ...
2
votes
1answer
80 views

NSString: Why use static over literal?

The Master-Detail Xcode Project Template generates code like: // Customize the appearance of table view cells. - (UITableViewCell *)tableView:(UITableView *)tableView ...
2
votes
3answers
65 views

Inner-Class and String Literals in Java

Following two cases seem to work: public class A { private class B { public static final String str = "str"; } } public class A { private static class B { public static ...
2
votes
2answers
172 views

How does file encoding affect C++11 string literals?

You can write UTF-8/16/32 string literals in C++11 by prefixing the string literal with u8/u/U respectively. How must the compiler interpret a UTF-8 file that has non-ASCII characters inside of these ...
2
votes
3answers
323 views

C# - How can I convert an escaped string into a literal string? [closed]

Possible Duplicate: Can I expand a string that contains C# literal expressions at runtime How can I convert an escaped string read from a file at runtime, e.g. "Line1\nLine2" into its ...
2
votes
4answers
509 views

C code in C++ compiler

I have following code, it's code from tomcrypto's manual and it won't work on MS VC++ 2008 EE. Any help? Also can I ask replace char* by std::string object? int main(void) { hash_state md; unsigned ...
2
votes
2answers
256 views

What happens with adjacent string literal concatenation when there is a modifier(L, u8, etc.)

It is valid in C and C++ to break a string literal because the preprocessor or the compiler will concatenate adjacent string literals. const char *zStr = "a" "b"; // valid What happens when string ...
2
votes
2answers
172 views

Special Character problem in regexp by python

I apply some regular expression on xml file to find and replace values. Normally it works.(I heard the voices saying "use xml parsers". Meanwhile I can not.) But if there is a special character in the ...
2
votes
4answers
171 views

what is the technical difference between these declarations?

char amessage[] = "now is the time"; /* an array */ char *pmessage = "now is the time"; /* a pointer */
2
votes
1answer
173 views

Shouldn't string references work for action names of an intent filter in the AndroidManifest?

Originally my AndroidManifest.xml contained an activity which I reached through its custom action name. <activity android:label="HERE I AM" android:name="TestController"> ...
2
votes
2answers
813 views

Unterminated string literal in escaped html within JavaScript string

I'm seeing an issue with some javascript string literals, when encoding this value: Unencoded <!-- Start ValueClick Media 300x250 Code for Test Tag --> <script language="javascript" ...
2
votes
2answers
304 views

Combining string literals and integer constants

Given an compile-time constant integer (an object, not a macro), can I combine it with a string literal at compile time, possibly with the preprocessor? For example, I can concatenate string literals ...
2
votes
2answers
200 views

C++ template argument inference and string literals

I have a "set" data type: template <class V> struct Set { void add(const V& value) {} }; I want to write a top-level function version of Set::add. template <class V> void ...

1 2