String interpolation is the replacement of defined character sequences in a string by given values. This representation is to be considered more intuitive for formatting and defining content than the composition of multiple strings and values using concatenation operators. String interpolation is a ...
-1
votes
3answers
33 views
Interpolating regexes into another regex
In the following code, k2 is minimally different from k1. That is, k2 is exactly the same except that it's defined using an interpolation. (That is, I expected it to be exactly the same; Obviously ...
1
vote
1answer
39 views
Scala unbound placeholder parameter
I am using the following code to meet my needs:
(1 to 5)..map(i => s"\\x${i}") // Produces List("\\x1", "\\x2", "\\x3", "\\x4", "\\x5")
But I would like to use a placeholder. According to the ...
4
votes
3answers
168 views
Python string interpolation implementation
[EDIT 00]: I've edited several times the post and now even the title, please read below.
I just learned about the format string method, and its use with dictionaries, like the ones provided by ...
0
votes
1answer
49 views
Ruby interpolation in haml
I've got following code in erb which works fine:
<div id='flash_<%= flash.keys.first.to_s %>'>
<%=h flash[flash.keys.first] %>
</div>
I want to convert it into haml:
...
0
votes
0answers
23 views
Aptana studio 3 shortcut for string interpolation in ruby
I'm developing a web app in Ruby and I'm using Aptana studio 3. The IDE has many nice features that speed up coding, and a rich right-click menu that allows to insert common snippets quickly.
One of ...
2
votes
1answer
118 views
String interpolation with triple quotes and multiple lines
I'm getting stange results from triple """ quoted strings when using string interpolation and line breaks:
val foo = "bar"
s"""$foo"""
This is ok.
s"""
$foo
"""
This is wrong, I get the ...
0
votes
1answer
16 views
PHP/SQL:: variable indexing in SQL statement
I put this in an SQL statement:
WHERE course_num = '$course_details['course_num']'
term_cd = '$course_details['term_cd']'
term_year = '$course_details['term_year']'
course_title = ...
3
votes
4answers
66 views
Is there any reason for not using string interpolation in PHP? [closed]
As far as I can see (browsing popular PHP code in GitHub) there are many people not using string interpolation:
$loader->load($config['resource'].'.xml');
Versus:
...
2
votes
1answer
44 views
PHP - print namespace constant within a string?
I have the following test code:
namespace Test {
const ONE = 50;
class A {
const TWO = 5;
public function pA($string) {
return $string;
}
}
$a = ...
0
votes
1answer
60 views
Get list in dictionary with string interpolation
I'm trying to get a value from a dictionary with string interpolation.
The dictionary has some digits, and a list of digits:
d = { "year" : 2010, \
"scenario" : 2, \
"region" : 5, \
"break_points" : ...
2
votes
1answer
69 views
How do you pass a variable to a custom string interpolator
In the worksheet below, I've created a custom string interpolator.
object WSLookup {
implicit class LookupSC(val sc: StringContext) extends AnyVal {
def lookup(args: Any*): String = {
...
1
vote
1answer
46 views
Interpolation of user input strings in Ruby
I can't strongly formulate what I need now, but the idea is this:
User inputs some string that looks like a template
'Welcome to #{country}!' # or 'Welcome to %%country%%!', it's not essential
Is ...
8
votes
1answer
241 views
String interpolation and macro: how to get the StringContext and expression locations
I'm trying to implement a custom string interpolation method with a macro and I need some guidance on using the API.
Here is what I want to do:
/** expected
* LocatedPieces(List(("\nHello ", ...
1
vote
1answer
82 views
looping within scala's string interpolation
This is a bit of an obscure question, but what would be the best way to loop within Scala's string interpolation? For instance, if you wanted to do this
html"""<ul>
${
for (todoItem ...
0
votes
2answers
69 views
Interpolation within single quotes
How can I perform interpolation within single quotes?
I tried something like this but there are two problems.
string = 'text contains "#{search.query}"'
It doesn't work
I need the final string to ...
1
vote
2answers
81 views
Interpolating a variable inside a string in grails
Suppose I have a string saved into a domain property in the database in the format
"This variable needs to be interpolated: ${variable}."
From the controller, I pass the value of this variable, ...
1
vote
3answers
211 views
Get argument names in String Interpolation in Scala 2.10
As of scala 2.10, the following interpolation is possible.
val name = "someName"
val interpolated = s"Hello world, my name is $name"
Now it is also possible defining custom string interpolations, ...
0
votes
2answers
81 views
Using a javascript variable in escape_javascript
I've been trying to get the following to work: I want a jQuery function to load a specific partial when there's being clicked on a certain div with an ID. I want this ID to be part of the :locals ...
0
votes
3answers
64 views
Inline Interpolation of Single Quoted String
I am building a string that will be used as a command run on a Windows box over SSH.
The command must be executed with elements of it wrapped in double quotes, so I have to wrap the command as a ...
0
votes
1answer
88 views
Formatting an Echo Statement in PHP
What is the proper way to reformat this PHP statement to say "Copyright © 2013 My Company. All rights reserved." (without quotes)?
<?php _e('All Rights Reserved', 'mycompany'); ?> <a ...
1
vote
2answers
96 views
String interpolation in perl
I am new to perl, I am learning using O'reillys Learning Perl book. Unicode characters(as written in the book) like this ♠ can be printed using print "\x{2668}". I was using foreach loop to print a ...
1
vote
1answer
239 views
Using String Interpolation macro in Clojure (<<)
Just getting started with clojure. I'm using leiningen and can't figure out why my importing of the << macro doesn't seem to be working
project.clj
(defproject myapp "0.1"
:description ...
-1
votes
1answer
40 views
Interpolate json value from ajax call in jquery
I have an ajax call in jQuery which returns a set of values: p1, p2 ... pn. These contain strings of a path and filename for displaying images. ie the img src value.
I want to loop through these n ...
6
votes
1answer
313 views
Is this a bug in Scala 2.10 String Interpolation inside a multiline String with backslash?
Using Scala 2.10.0-RC1, I tried to use String Interpolation inside a Windows file path, e.g. like this:
val path = s"""c:\foo\bar\$fileName.csv"""
And got an Exception
...
14
votes
4answers
647 views
String interpolation in Scala 2.10 - How to interpolate a String variable?
String interpolation is available in Scala starting Scala 2.10
This is the basic example
val name = "World" //> name : String = World
val message = s"Hello $name" //> message ...
5
votes
2answers
70 views
Accessing object's method within string
Recently I was reading php documentation and found interesting note in string section:
Functions, method calls, static class variables, and class constants inside {$} work since PHP 5. However, ...
0
votes
1answer
159 views
Interpolating Ruby code within quotes within a string
I have a string like this:
'say "Twenty-five minutes remaining."'
How would I interpolate more dynamic content into that message? I already know the approach below doesn't work, as the content is ...
0
votes
2answers
353 views
jquery string interpolation causing problems
I'm using the jquery tokeninput plugin, and I want the json token input data to be dependent upon a value that can be found somewhere in the form.
My code looks like this:
jQuery(function() {
var ...
2
votes
2answers
62 views
Query string safety and variable interpolation
Not very familiar with PHP, is it possible for the user to take advantage of variable interpolation to get the value of secret?
<?php
$secret = 'hidden data';
echo $_GET['id'];
?>
I ...
3
votes
3answers
156 views
Python string interpolation with tuple slices?
I'm using python2.7 and I was wondering what the reasoning is behind pythons string interpolation with tuples. I was getting caught up with TypeErrors when doing this small bit of code:
def ...
0
votes
3answers
74 views
cleaner code, concatenate calls
im still fairly new to RoR, and as always looking for better, more efficient ways of coding. with the following line of code, is there possibly a better way of achieving the same result?
= ...
3
votes
1answer
113 views
What escapes are excluded when Perl regex interpolation is off?
I'm curious as to what escape sequences get excluded from being matched in a Perl regular expression when interpolation is turned off, say by using an apostrophe (single-quote) as a delimiter for m'', ...
2
votes
6answers
478 views
Does python has similar variable interpolation like “string #{var}” in Ruby?
I found it's really tedious to write
print "foo is" + bar +'.'
can I do similar thing
print "foo is #{bar}."
in Python
0
votes
1answer
76 views
How to solve this Python string interpolate related?
I'm required to do a python quiz.
here is question:
Your challenge here is to write a function format_point that returns a
string representing a point in 2-space. The function takes three
...
-1
votes
2answers
245 views
PHP: Interpolating a PHP variable in a string block
So, in Perl and PHP, you can produce a block of text using a number of the "<" symbols:
Perl:
return <<TEXT;
<a href=$foo>Perl interpolates this properly</a>
TEXT
PHP:
...
1
vote
1answer
568 views
Jade dynamic data
Using node.js I am passing some variables to jade view:
res.render('index', {
locals: {
name: user.name,
hashpassword: ...
0
votes
3answers
122 views
Create an import statement using variable “interpolation”
I have a long list of possible files I need to import. I will only ever need 1 of them and they all have the same interface. (Choosing a payment gateway to process a payment)
Suppose I have a ...
0
votes
1answer
703 views
Rails + Paperclip + AWS S3 has_attached_file method: Why doesn't this String interpolation work?
Here I have a piece of code that should work based on what I know of string interpolation in Ruby. Its inside a model class: "s3_file"
Basically wahat I am trying to accomplish is while saving a file ...
1
vote
1answer
130 views
PHP deferred string interpolation
Is there a way to 'prepare' a string for later interpolation (without using custom expansion function)?
For instance:
class Test {
private static $STR_VAL = "the val is $v";
public static ...
5
votes
0answers
195 views
string interpolation broken with recent gsubfn? [closed]
The last example used to work, and now it doesn't. No string interpolation inside a function? Maybe it has something to do with variable scope? Any suggestions?
library(gsubfn)
#R.Version() # ...
2
votes
1answer
392 views
Django translations and gettext: The deprecation of the % (string interpolation) operator
Although Django Django does not yet support Python 3, it eventually will, so I want to keep my code the more "future-proof" possible.
Since Python 2.7 the string interpolation operator (%) is being ...
3
votes
1answer
634 views
Why is String Interpolation Failing in erb Template?
I have the following code in a .erb file:
<% embed='<a href="http://someurl.com/whatever">#{@webcast.name}</a>'%>
<p id="embedCode">
<pre>
<code>
...
14
votes
1answer
2k views
Why does this string interpolation work in Ruby?
The proper way to use string interpolation in Ruby is as follows:
name = "Ned Stark"
puts "Hello there, #{name}" #=> "Hello there, Ned Stark"
That is the way I intend to always use it.
...
5
votes
2answers
1k views
String concatenation vs. interpolation in Ruby
I am just starting to learn Ruby (first time programming), and have a basic syntactical question with regards to variables, and various ways of writing code.
Chris Pine's "Learn to Program" taught ...
0
votes
1answer
168 views
Prevent python performing string interpolation (replacement) with %s inside sqlite3 SQL block
So here's the line with the SQL query in it. How do I use strftime('%s', 'now') without python trying to replace %s with a string... this is incredibly annoying.
Thanks
DBQuery.query('INSERT INTO ...
0
votes
2answers
168 views
Ruby: syntax for string interpolation and commenting
There are a lot of similar questions to this one but i think none really had the answer i was in need of.
From what i perceived, anything that has a # preceding it becomes a comment, as in:
puts ...
1
vote
8answers
1k views
Interpolate Strings in C# (like the '%' operator in Python)
I am learning C# & I am trying to figure out how I can combine strings like I do in Python.
I want to do the following in C#:
strVar = "stack"
mystr = "This is %soverflow" % (strVar)
Can I ...
2
votes
3answers
462 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. ...
0
votes
3answers
515 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 ...
13
votes
4answers
2k 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 ...