Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
785 views

python string interpolation

What could generate the following behavior ? >>> print str(msg) my message >>> print unicode(msg) my message But: >>> print '%s' % msg another message More info: my ...
5
votes
4answers
457 views

String Interpolation in Python

I'm a novice coder and have a (hopefully) simple question. Is there a Python equivalent to Ruby's string interpolation? Ruby example: name = "Spongebob Squarepants" puts "Who lives in a Pineapple ...
5
votes
2answers
330 views

Can Perl string interpolation perform any expression evaluation?

related to question: http://stackoverflow.com/questions/3939788/perl-regex-substituion/3939854 In Perl, is there a way like in Ruby to do: $a = 1; print "#{$a + 1}"; and it can print out 2?
3
votes
4answers
140 views

Why is a variable name followed by an underscore not evaluated correctly during string interpolation in Perl?

Why is a variable name followed by an underscore not evaluated correctly during string interpolation in Perl? my $i = 3; print "i = $i\n"; # works, prints "i = 3" print "_i = _$i\n"; # works, prints ...
3
votes
2answers
262 views

How can I manually interpolate string escapes in a Perl string?

In perl suppose I have a string like 'hello\tworld\n', and what I want is: 'hello world ' That is, "hello", then a literal tab character, then "world", then a literal newline. Or equivalently, ...
3
votes
4answers
455 views

Why is this intended interpolation interpreted as division by Perl?

G'day, Why am I getting the following two errors from the script fragment below? Argument "www4.mh.xxxx.co.uk.logstatsto20090610.gz" isn't numeric in division (/) at line 56 Argument ...
2
votes
3answers
60 views

Detecting %s mixed with named placeholders in python interpolation

So apparently, Python will allow '%s %(var)s' % {'var': 'x'} which produces "{'var': 'x'} x" I'm writing something where I basically want python's named placeholder substitution features only. ...
2
votes
3answers
264 views

String interpolation in Scala?

I wanted to ask if there is any type of string interpolation in Scala. I have made a search on the subject but 'till now I have found that there is no string interpolation. Is there plans to get ...
2
votes
2answers
511 views

Java Expression Language : Interpolation?

Greetings, In the webapplication I am developing , I want to do something like follows: I Have a Bean like class Gene{ String geneid; String sequence; .. } // EL expression (sometimes should be ...
1
vote
1answer
36 views

When should I force interpolation on a Gstring?

I'm working on code that will scan a db table for column names, and then build a SQL statement to create table based upon a subset of columns. The end statement can be quite huge (60 cols in some ...
1
vote
1answer
96 views

What is wrong with this implementation of String interpolation in python*

import re r = re.compile("#{([^}]*)}") def I(string): def eval_str_match(m): return str(eval(m.group(1))) return r.sub(eval_str_match,string) * besides python taste/style/standards ...
1
vote
2answers
116 views

Analog of bash “echo $(cat file)” in python (one more time string interpolation)

I have a file values.txt with hierarchical formatting like this: group1 subgroup1 value1 value2 group2 subgroup2 value3 value4 if in bash ...
1
vote
4answers
207 views

Can I use Razor (or similar) in a regular .NET class, i.e. get string interpolation of sorts?

I could've sworn I saw some articles a while ago about imperfect but useful string interpolation methods for C, but no such luck right now. However, there's Razor, which does more or less what I want. ...
1
vote
5answers
371 views

Is it possible to temporarily disable Python's string interpolation?

I have a python logger set up, using python's logging module. I want to store the string I'm using with the logging Formatter object in a configuration file using the ConfigParser module. The format ...
1
vote
1answer
1k views

Parsing string interpolation in ANTLR

I'm working on a simple string manipulation DSL for internal purposes, and I would like the language to support string interpolation as it is used in Ruby. For example: name = "Bob" msg = "Hello ...
1
vote
0answers
95 views

Interpolation and templating

I am trying to verify my understanding string interpolation and string templating. Is it correct to say that the two Java code snippets are examples of templating? public class Person { //showing ...
1
vote
3answers
133 views

aliasing a method results in different objects?

def foo "foo" end alias foo2 foo puts "foo2: " + foo2.object_id.to_s puts "foo: " + foo.object_id.to_s In the above example, I expected to see the same object_id output for each method call ...
0
votes
3answers
92 views

ruby here documents

I am trying to write a method in Ruby that uses a here-document of HTML code with input variables and fills them in accordingly. My method is: calcForm(left, op, right, result) The html tags I am ...
0
votes
3answers
78 views

String Interpolation in Python

I am trying to interpolate this string correctly: /test/test?Monetization%20Source=%d&Channel%20Id=%d' % (mid, cid) I want the the %20 to rendered as is and the %d to serve as place-holderes ...
0
votes
3answers
225 views

better alternative to message format

I have a string of following format Select * where {{0} rdfs:label "Aruba" } limit 10 Now I would like to replace {0} with some new text, but the problem is message format is unable to parse the ...
0
votes
2answers
138 views

Rails String Interpolation in a string from a database

So here is my problem. I want to retrieve a string stored in a model and at runtime change a part of it using a variable from the rails application. Here is an example: I have a Message model, which ...
0
votes
2answers
67 views

Allow users to customize strings that are later interpreted with embedded expressions

Originally we built out a service on Rails that used static strings with embedded expressions (#{}) for values like the datetime of an object. These strings were used to build communications to other ...