String literals concern the syntactic representation of literal constant strings in C and C++.
2
votes
1answer
28 views
Multi-line string literals behave sane only in REPL and Worksheet
REPL:
scala> val a = "hello\nworld"
a: String =
hello
world
scala> val b = """hello
| world"""
b: String =
hello
world
scala> a == b
res0: Boolean = true
Worksheet:
val a = ...
0
votes
2answers
49 views
String in function parameter
int main()
{
char *x = "HelloWorld";
char y[] = "HelloWorld";
x[0] = 'Z';
//y[0] = 'M';
return 0;
}
In the above program, HelloWorld will be in read-only ...
6
votes
1answer
120 views
C compiler ??) replacement
We faced a strange issue with the Visual Studio 2005 compiler.
At compile time, it replaces this string constant
"... ,0x??)"
with this one:
"... ,0x]"
We hardly learned by trying that the ...
0
votes
1answer
31 views
How is handled escape values(like \nnn,\xnn) in string literal?
How is handled escape values(like \nnn,\xnn) in string literal? consider
"foo \x61 \042 baa"
Is \x61 and \042 converted to decimal base and stored in a memory location? and is translated to "foo ...
0
votes
3answers
72 views
Algorithm that could detect Java keywords, but not if contained in a String
I'm trying to come up with an algorithm in Java that can detect whether given code contains Java keywords and capture them for proper formatting.
The catch is that I only want to detect keywords if ...
1
vote
2answers
48 views
Perl replace multiple strings simultaneously
Is there any way to replace multiple strings in a string?
For example, I have the string hello world what a lovely day and I want to replace what and lovely with something else..
$sentence = "hello ...
1
vote
3answers
34 views
How to “instanceof” a primitive string (string literal) in JavaScript [duplicate]
In JavaScript, I can declare a string in the following ways;
var a = "Hello World";
var b = new String("Hello World");
but a is not an instance of String...
console.log(a instanceof String); ...
0
votes
1answer
13 views
Element like Literal in Ext.NET
Is there an element like asp:literal in Ext.NET to push string elements inside the tag? I am trying to implement a treeview and I get some data in JS. I want to pass this string into ext:TreePanel tag ...
2
votes
0answers
51 views
how long can a String survive in the literal pool [duplicate]
In the following SCJP Mock Exam question, students are asked to find the exact line that String b of the line marked (0) will be a candidate for Garbage Collection.
public class Q76a9 {
static ...
2
votes
1answer
68 views
Global variable vs macro expansion for string literal
I'm trying to understand some of the intricacies the preprocessor and of the C compiler (specifically, the gnu gcc) and string literals. Is it more efficient to just assign a global variable for a ...
1
vote
1answer
64 views
type inference and string literals, how to do it?
How do I get this to compile?
Code
object Playground2 {
trait Client[S,A] {
def wrap[S,A](v: A): (S,A)
}
class TestClient extends Client[String, Int] {
override def ...
12
votes
4answers
258 views
How to write unicode cross symbol in Java?
I'm trying to write this unicode cross symbol (𐀵) in Java:
class A {
public static void main(String[] args) {
System.out.println("\u2300");
System.out.println("\u10035");
}
}
...
1
vote
2answers
46 views
Can't make unicode string literal with xor symbol in Python?
I'm trying to print the xor symbol in Python (𐌈).
I can print a universal quantifier just fine:
>>> print u"\u2200"
∀
But when I do xor, it prints 8 instead:
>>> print ...
1
vote
5answers
147 views
Compile time size of string literal in array of string literals
I'm looking to find the length of a C-string literal at compile time.
Given the definitions:
static const char * const header_left[] =
{
" | | Raw | Raw |",
" | ...
4
votes
2answers
164 views
Switch not working in C++
I came across very strange problem today. Lets concider the following code:
int llex(){
cout<<"enter 1"<<endl;
char32_t c = U'(';
cout<<(c==U'#')<<endl;
...
0
votes
3answers
62 views
include/import separate AS3 file
I am trying to just include a .as file in my flash application. I'm sure it's not that difficult and I'm just getting something slightly wrong, but at the top of my code I always put:
include {"Le ...
3
votes
3answers
79 views
Returning content of char * from a function [duplicate]
Recently came across following code which declares a char *p, assigns value such as p="GOOD" and returns return p. Is the return value valid when function call is completed?
const char * ...
10
votes
1answer
392 views
Using “constexpr” to use string literal for template parameter
I have written some code to cast const char* to int by using constexpr and thus I can use a const char* as a template argument. Here is the code:
#include <iostream>
class conststr
{
...
6
votes
3answers
130 views
Are 1-character string literals ever optimized to simple char type literals?
Often when coding in C++, I will end cout statements with a newline (\n). However, my instinct has always been to express this newline as a string literal: "\n", even though it is a single character ...
1
vote
1answer
74 views
C: Implementing string literals with their size in a table
I am looking for the most elegant implementation of string literals with their size in a table in C. The main point is that I want the compiler to calculate sizeof("Some String Literal") during ...
1
vote
3answers
119 views
Decide if const char* is a string literal or a variable
Is there any simple method to detect, if the parameter passed to a function(const char *argument) was a constant literal or a variable?
I'm trying to fix errors in some code, which is filled with ...
-2
votes
1answer
49 views
Unwanted slash in string literal
I'm trying to pass a filename to a cmd prompt. Ive looked various places but cant seem to find the answer - I'm sure its simple.
My string is built like so:
string cmd = string.Format(@" -u{0} -p{1} ...
1
vote
1answer
157 views
How to Handle String Literals in Resource (.resx) Files
All, I have recently been learning a lot about localisation and the use of resource files (.resx). For a particular code, I have a .resx (and ascociated localised versions .de-DE.resx etc.) for each ...
0
votes
1answer
66 views
Extracting ONLY specific parts of a regex 'expression'
I have a list of expressions that I would like to validate, and extract specific parts of.
These expressions are allowed to have any combination of:
String literals (possibly escaped, but not ...
0
votes
4answers
87 views
Property names in JavaScript
I have a question that has been really bugging me for quite a while and I cannot seem to find any resources that cover the topic. How can property names in JavaScript be string literals or numeric ...
26
votes
1answer
519 views
What is the result of decltype(“Hello”)?
I'm getting unexpected results from all compilers on which I tried the following (GCC 4.7.2, GCC 4.8.0 beta, ICC 13.0.1, Clang 3.2, VC10):
#include <type_traits>
int main()
{
// This will ...
0
votes
2answers
63 views
Modifying string literal passed in as a function
If I have a function in program
int main(){
char *name = "New Holland";
modify(name);
printf("%s\n",name);
}
that calls this function
void modify(char *s){
char new_name[10] = ...
3
votes
1answer
71 views
How to get down to StringLiterals with Eclipse AST?
I need to create an Eclipse plugin that displays a tooltip when I hover the mouse over a String literal.
But only if that String literal is the first parameter of a special method.
Here is the ...
3
votes
3answers
271 views
How to remove escape sequence like '\xe2' or '\x0c' in python
I am working on a project (content based search), for that I am using 'pdftotext' command line utility in Ubuntu which writes all the text from pdf to some text file.
But it also writes bullets, now ...
-5
votes
3answers
283 views
Ways to distinguish string literal and runtime generated string
Suppose I have a function that takes a string as input:
SomeOutputType f_impl(const char* s);
Most call sites just use string literals as input, e.g. f("Hello, world"). Suppose I have implemented ...
0
votes
1answer
147 views
'_T' was not declared in this scope?
What file should I include to have the _T() macro? it converts text iterals I think. I thought it is windows.h, but I have it included already.
surprisingly I could not find the answer on goolgle.
2
votes
1answer
70 views
How to detect a string literal with type_traits?
How do I reliably static_assert on anything that isn't a string literal?
For example, in the following code, I've attempted to wrap the standard assert macro but statically reject anything for the ...
5
votes
1answer
328 views
C++11: Example of difference between ordinary string literal and UTF-8 string literal?
A string literal that does not begin with an encoding-prefix is an ordinary string
literal, and is initialized with the given characters.
A string literal that begins with u8, such as ...
2
votes
2answers
240 views
How to separate paragraphs in a string
Hi guys I really need your help. I was trying to take a multi-line string which was concluded of a few paragraphs and split it into a few individual texts.
I realized that whenever I skip a line ...
12
votes
4answers
530 views
Why can a string literal be implicitly converted to char* only in certain case? [duplicate]
void f(char* p)
{}
int main()
{
f("Hello"); // OK
auto p = "Hello";
f(p); // error C2664: 'void f(char *)' : cannot convert parameter 1
// from 'const char *' to 'char *'
}
...
0
votes
1answer
183 views
Lambda string as VARCHAR
One of my Join key-selectors looks like this:
x => x.A + "-" + x.B
NHibernate makes "-" an extra parameter. This parameter gets the SQL type nvarchar and so the whole statement gets converted on ...
0
votes
1answer
70 views
String literal still ending up with double slashes?
I have a small piece of code:
public static void Write(string filename){
string time = DateTime.Now.ToString("hh:mm tt");
int date = int.Parse(DateTime.Now.ToString("yyyyMMdd"));
string ...
6
votes
2answers
269 views
String switch in Razor markup with colon in case statement causes error “unterminated string literal”
When I want to use a colon ":" in my string switch case statement I get the error "unterminated string literal", how can I fix this and why does it give the error?
Code:
@switch (stringText)
{
...
1
vote
3answers
225 views
C: string literal to int array
I have a function, taking an int array as argument. The int array is representing a string, but must be able to contain EOF and therefore can't be of type char[]. My function looks something like ...
0
votes
1answer
76 views
String object creation subtleties: aliases and garbage
Practice Test Question:
Consider the following code:
String entree = new String (“chicken”);
String side = “salad”;
entree = “turkey”;
String dessert;
entree = side;
String extra = entree + side;
...
0
votes
1answer
274 views
gcc utf-8 string literal compile error
I'm using g++(GCC) 4.7.2 on Ubuntu.
Just trying to figure out how to get the "u8" string literal prefix to compile.
I thought it was "built in" with this version of gcc.
#include <iostream>
...
1
vote
0answers
61 views
Why is a hard-coded string constant an lvalue? [duplicate]
Possible Duplicate:
Why are string literals l-value while all other literals are r-value?
In Can someone please explain move semantics to me? appears the following code snippet and comment:
...
7
votes
4answers
784 views
Why does gcc allow char array initialization with string literal larger than array?
int main()
{
char a[7] = "Network";
return 0;
}
A string literal in C is terminated internally with a nul character. So, the above code should give a compilation error since the actual ...
3
votes
3answers
521 views
Is the u8 string literal necessary in C++11
From Wikipedia:
For the purpose of enhancing support for Unicode in C++ compilers, the definition of the type char has been modified to be at least the size necessary to store an eight-bit coding ...
-1
votes
3answers
81 views
What is wrong with my strings?
The following code is generating an error and I cannot see the issue. Can anyone help?
customer_array = [‘Ken’,’William’,’Catherine’,’Mark’,’Steve’,’Sam’]
customer_hash = {
‘Ken’ => ‘Fiction’,
...
1
vote
5answers
489 views
C++ concat two `const char` string literals
Is it possible to concat two string literals using a constexpr? Or rephrased can one eliminate macros in code like:
#define nl(str) str "\n"
int main()
{
std::cout <<
nl("usage: foo")
...
0
votes
1answer
49 views
Extracting value from a list by name
I have a list:
>data<- list("Apple"=12,"orange"=4,"pear"=5)
>fruit<- "Apple"
Now I extract the value for the Apple.
>data$fruit
I get NULL.
7
votes
0answers
59 views
Including files as raw string literals [duplicate]
Possible Duplicate:
C/C++, can you #include a file into a string literal?
Is it possible to get the entire contents of a text file as a string at compile time using C++11 raw string ...
1
vote
1answer
135 views
@ in filename using Maxscript
Using Maxsctipt: Exporting a file the following code works fine:
caption:"Caption" \
types:"text(*.txt)|*.txt|All|*.*|" \
filename:(sysinfo.currentdir + @"\some_text.txt")
But what I am wondering ...
-1
votes
1answer
339 views
String literals: pointer vs. char array [closed]
In this statement:
char *a = "string1"
What exactly is string literal? Is it string1? Because this thread String literals in C says something different.
Up to my knowledge
int main()
{
char ...







