Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
86 views

Why does String::sub!() change the original of a cloned object in Ruby?

I have a struct in my Ruby code that looks somewhat like this Parameter = Struct.new(:name, :id, :default_value, :minimum, :maximum) later, I create an instance of this struct using freq = ...
2
votes
3answers
81 views

How do I write a method for multiple controllers that strips out an array of text?

I want to write a method that simplifies the names of corporations. I would like it to work as follows: @clear_company = clear_company(@company.name) What would happen is @company.name = "Company, ...
1
vote
1answer
241 views

Rails 3: how to use gsub or to replace whitespace characters with “-”?

I have an Artist model is name:string. and I want /users/1/artists/jimi-hendrix/posts instead of what I have now which is /users/1/artists/1/posts The problem is I don't think I can use friendly_id ...
1
vote
1answer
254 views

Ruby match first occurrence of string for a gsub replacement

I have a string let's say http://someUrul.com/someController/SOmeAction?SomeQS=http://someOtherUrl and I want to replace the first http with https, but not the second, so I end up with ...
1
vote
3answers
89 views

Python, context sensitive string substitution

Is it possible to do something like this in Python using regular expressions? Increment every character that is a number in a string by 1 So input "123ab5" would become "234ab6" I know I could ...
1
vote
2answers
86 views

“%” character cause Error in strings substitution with locals()

I try to substitue strings with variables using locals() in python but I can find a way to use the % character inside the string without error. Here is a concrete example : color = ...
1
vote
1answer
55 views

Why is the variable's value not substituted in the string?

Hai, can anyone help me... When I write like: $file=file_get_contents('https://graph.facebook.com/me?access_token=1932993|twetrg|vsfgsewr'); the code gets response as well good. but when I write ...
1
vote
5answers
1k views

TSQL varchar string manipulation problem

I have a variable which contains the following string: AL,CA,TN,VA,NY I have no control over what I get in that variable (comes from reporting services) I need to make it look like this: ...
0
votes
1answer
42 views

Eclipse: How to substitute strings in files copied to output folder

Eclipse copies files which are not Java sources to output folder as-is. I need to pre-process (substitute variables) these files before they are copied. The substitution table shall be project-based. ...
0
votes
2answers
84 views

Bash or-equals ||= like Ruby

Does Bash have something like ||= ? I.e., is there a better way to do the following: if [ -z $PWD ]; then PWD=`pwd`; fi I'm asking because I get this error: $ echo ${`pwd`/$HOME/'~'} -bash: ...
0
votes
4answers
489 views

sed wildcard substitution

I want to do a substitution based on a wildcard. For example, change all "tenure" to "disposition" only if the word "tenure" comes after an '=' sign. Basically a regex that would match this =.*tenure ...
0
votes
2answers
101 views

Substituting values into web.config at runtime

We have an application that runs in three environments: development, QA, and production. The application accesses an SQL server and several web services. The web.config file has the connection string ...
0
votes
3answers
114 views

Unable to get results when passing a string via parameter substitution in gql query

I am able to properly pass a string variable to the gqlquery through parameter substitution, here's the code i've tried to use; user_name = self.request.get('username') #retrieved from UI p = ...