The colon tag has no wiki summary.
3
votes
1answer
36 views
How to read out a column with a colon (:) in its name in hibernate and postgresql
sorry for this maybe being a very easy question, I searched and didn't find anything about my specific case.
I am given a postgre database in which I have a table that has a column called:
...
0
votes
1answer
32 views
How to perform a map reduce in MongoDB with a colon in the field name?
I have got the following problem:
In MongoDB I have fields with a colon in the name.
To address a field I would normally use:
var map = function() {
emit(this._id, this.sth.field);
}
...
0
votes
1answer
53 views
Colons as divider with Rails Route?
I would like to use colons as divider in my rails route url instead of forward slashes. Is it possible to do the this?
I'm after something like the following
match '*page_path/:title ":" ...
8
votes
3answers
71 views
Why does somelist[len(somelist)] generate an IndexError but not somelist[len(somelist):]?
I understand that somelist[len(somelist)] cannot access an index that is outside of the defined list - this makes sense.
But why then does Python allow you to do somelist[len(somelist):]?
I've even ...
2
votes
3answers
141 views
Bash colon operator in variable substitution?
I inherited some bash code and these two lines are bewildering me:
branch_name=`git describe --contains --all HEAD`
branch_name=${branch_name:-HEAD}
My understanding of the : colon operator is that ...
0
votes
3answers
60 views
Javascript inner function with colon
I wonder what is the inner function like?
I know that you can write following
var obj = {
test: 'something'
}
But in this code, the innerfunction does not refer to a variable, but to a ...
7
votes
2answers
227 views
Matlab's colon operator: values between two vectors
I have two vectors, idx1 and idx2, and I want to obtain the values between them. If idx1 and idx2 were numbers and not vectors, I could do that the following way:
idx1=1;
idx2=5;
values=idx1:idx2
% ...
3
votes
1answer
78 views
Python list of floats ends up with a ':' when converting to a string
I have a list of floats read in from a text file. After some data processing I write the list to a file using:
for val in flist:
sa = '{0}'.format(val)
fout.write(sa)
For specific input ...
9
votes
4answers
98 views
Please explain this usage of a colon in javascript
I'm making a library, and I often inspect the result of Closure Compiler's output to see how it's doing things (I do have unit tests, but I still like to see the compiled code for hints of how it ...
2
votes
0answers
115 views
python float got a colon after the decimal point after addition [closed]
In my python program, I got two floating numbers -2901.0, -200.0 during some process. When I tried to add them directly I got -3100.: (If I converted it to str, it would be "-3100.:")
Python didn't ...
0
votes
3answers
90 views
Whats the regular expression for a colon seperated value?
If I have a string such as:
blah blah item: value blah blah
What would the expression be to just get value?
-5
votes
5answers
112 views
How do I read two words in a text box with a : between them [closed]
I want to have my program read two inputs with one text box.
The format would look like this: First:Second
Here's a picture of what I'm trying to explain
http://i.imgur.com/2Pe2I.png
I would like to ...
0
votes
2answers
229 views
python : lxml xpath tag name with colon
i have to parse some feed, but one of the element (tag) is with colon <dc:creator>leemore23</dc:creator>
how can i parse it using lxml? so i have done it in this way
r = ...
0
votes
1answer
99 views
SQL purpose of colon
My colleague wrote this SQL statement and I had a hard time understanding it. What exactly is the purpose of using colon in the where clause?
WHERE MGM_YYMM like :AS_YYMM
Full Query:
SELECT ...
80
votes
4answers
2k views
What would 'std:;' do in c++?
I was recently modifying some code, and found a pre-existing bug on one line within a function:
std:;string x = y;
This code still compiles and has been working as expected.
The string definition ...
3
votes
1answer
182 views
What does the colon (:) exactly stand for in Swi-Prolog?
I could not find explicitly what (:) stands for in prolog.
In interactive mode you can see the following evidence:
?- display(a:b).
:(a,b)
true.
?- display([a,b,c]).
.(a,.(b,.(c,[])))
true.
?- ...
1
vote
2answers
122 views
django admin colon syntax in template tags and in reverse function
While learning with Django by Example, I have found something I don't yet know and haven't found any reference for it. I'm sure it is well documented somewhere, but I haven't found out how to search ...
0
votes
2answers
76 views
savon ruby colon inside hash
Is it possible somehow in Ruby to write in hash something like this:
"xmlns:soap"
So it will something like
:xmlns:soap
Regards.
2
votes
2answers
123 views
What is Matlab's colon operator called?
When teaching people about Matlab, it would be very nice if I could refer to Matlab's colon operator as something other than just "the colon operator". As you can read on this Mathworks blog, the ...
1
vote
1answer
507 views
SOLR Filter Query (fq) doesn't work for the strings contain Colon [ : ] or Slash [ / ]?
In Solr (3.6), i can use fq for every fields but not for the fields which contains Colon [:] or Slash [/] inside, for example, normal url fields.
Lets assume some records will be looks like:
{
...
2
votes
1answer
98 views
bool colon initialization
While reading some C++ code, I saw and was confused by this little line in a class:
bool x:1;
In debug builds, I noticed that 'x' is initialized as 'false', but I can not find any documentation ...
0
votes
2answers
184 views
Fortran Implied Do with a colon?
We are having to convert some old Fortan 77 code to vb.net. With none of us knowing any Fortran, we have made significant progress.
However, we have come across the following write statement which ...
0
votes
2answers
158 views
C++ regex invalid character (colon) [closed]
I have this line of code
regex rgx("([A-Z0-9#\:])");
And it keeps telling me that my colon is an invalid character.
Whether I escape or not.
Any help?
Thanks!
1
vote
1answer
123 views
MATLAB nesting multiple input functions
Given a multiple input matlab function
out=f(in1, in2)
I would like to write a second function g which generates the inputs for f, e.g.
[in1, in2]=g(in)
so that I can call something like:
...
0
votes
2answers
56 views
Can colon be used as identifier?
I saw a code in The following bash command will spawn processes to kernel death. Can you explain the syntax? as follows
user@host$ :(){ :|:& };:
Here colon used as identifier for function name.
...
1
vote
2answers
104 views
Is there a way to put a colon in a jtextfield so it cant be removed?
I want a user to input time, so like 12:00, but I need to figure out a few things and I am wicked lost.
Can I limit the text to 5 characters and how?
Can I have a colon embedded in the code so that ...
0
votes
1answer
133 views
What do words prefixed by a colon do in Ruby? [duplicate]
Possible Duplicate:
Understanding Symbols In Ruby
What is the colon operator in Ruby?
This is some code the Rails tutorial I'm reading gives me.
class Post < ActiveRecord::Base
...
0
votes
1answer
114 views
Colon : in a REST WCF Request
So I have a URL to my wcf service that looks like this:
http://dev.verse-master.com/api/VerseMasterService.svc/Search/bi/isaiah 34:16/0/60
My operation contract looks like this:
[OperationContract]
...
3
votes
2answers
709 views
How to pass a date range to awk as a variable
Here is my case.
bash ~]# TIME="2012-05-25 06:42:57"
bash ~]# echo "2012-05-25 00:16:51,610" | awk -v var=$TIME '{if ($0 < var) print $0}'
Then, here is the error message
awk: 06:42:57
awk: ^ ...
5
votes
1answer
167 views
GNU Make Convert Spaces to Colons
Given a colon-delimited list of paths, getting a space-delimited list with GNU Make is straightforward:
CPATHS := /usr/bin/foo:/usr/bin/baz:/usr/bin/baz
SPATHS := $(subst :, ,$(CPATHS))
However, I ...
1
vote
2answers
127 views
Can't understand a matplotlib's example where there are both ellipsis and colons probably associated with indices
I have a question about this matplotlib's example.
Here's the part that I don't understand
def update_line(num, data, line):
line.set_data(data[...,:num])
return line,
What does ...
1
vote
3answers
181 views
Colon Operator with Deques (in Python)
I was hoping to use the colon operator with my deque but it didn't seem to work the same as a list.
I was trying something like:
myDeque = deque([0,1,2,3,4,5])
myDequeFunction(myDeque[3:])
This ...
1
vote
1answer
544 views
MySQL: What does the equal colon =: mean in an update statement?
I came across the following MySQL query:
update 'table' set itemId=:itemId, startDate=:startDate where id=:id
However I could not figure out what the =: means. I think that the name after the =: ...
4
votes
1answer
1k views
How to get a file in windows with a colon in the filename/
I am getting errors from customers who are uploading files with a colon in the file name
ie C:/uploads/test : doc.html
I assume that some unix or linus system is generating the file but I'm not ...
2
votes
2answers
216 views
Remove the colon if it's the first character
I would like to remove the colon only if its the first character of a string. I have tried the following but it doesnt work. Any help would be appreciated:
//remove the colon if its the first ...
1
vote
4answers
833 views
Java String split not working as expected using a colon (“:”)
I am trying to remove the seconds off of this string:
10/31/2009 9:46:16 AM
I'm attempting using the following function to do this:
public static String correctValue4(String str) {
String ...
1
vote
1answer
574 views
Colon operator in PHP
This is part of the wordpress code and I don't understand it:
if ( is_404() && $template = get_404_template() ) :
elseif ( is_search() && $template = ...
1
vote
1answer
167 views
urllib2 having trouble processing colon symbol in url
I am using the API for challonge and their url format is https://username:password@challonge.com/api/ However, when the use urllib2 in python to get this url, response = ...
2
votes
3answers
534 views
PHP Does a colon : in an array key have any special significance?
Q: Does a colon : in an array key have any special significance?
From the manual:
An array can be created by the array() language construct. It takes as parameters any number of comma-separated key ...
2
votes
3answers
139 views
Is it possible to apply colon operator on an expression in MATLAB?
It's very convenient if it was possible to use colon operator on a expression. Well to my knowledge, it's not possible. For example when I want to calculate the differences between two matrices, I ...
0
votes
3answers
435 views
bash, eval, protect pipes and colon in string
Here is the simplest distilled version of my problem. The complexity that remains is for good reasons even if not self evident here. Additionally the script is internal and has no chance of ...
0
votes
1answer
108 views
EBNF Colon and Semicolon usage?
I have no idea what a colon means in BNF or EBNF. It's not listed anywhere on the internet. Anyway, my professor decided to assign it in the homework. I think he is confusing it with a semicolon or ...
2
votes
2answers
161 views
Why am I getting problems with my rails hash key notation?
I have recently written some rails code lines like
RandomApp::Application.config.session_store :cookie_store, key: '_ramdom_app_session'
and I have used this kind of code in development and in ...
2
votes
2answers
162 views
preg_match character class replacing too much
I have a little problem with regex. I want to clean up a string.
Currently I'm using the following regex:
preg_replace("/[^a-zA-Z0-9 _-]/", "", "Example1:2@32");
which gives me: "Example1232"
But ...
0
votes
2answers
1k views
When using <s:select /> tag in Struts2, how to make colon disappear?
I have a problem when using UI tags (ex: ) in Struts.
I use the default theme in a form (theme='xhtml')
CASE 1: ========================================
When using
<s:select label="FIELD1" ...
1
vote
2answers
368 views
How to change the Properties.store() divider symbol from “=” to “:”?
I recently found out about java.util.Properties, which allows me to write and read from a config without writing my own function for it.
I was excited since it is so easy to use, but later noticed a ...
1
vote
1answer
65 views
Weird behaviour with colon operator on constant attribute in MATLAB class
I have a weird problem I can't solve and can't find any solution to on the internet:
classdef test
properties(Constant)
bla = {'Marker', 'o', 'MarkerEdgeColor', 'b', 'MarkerFaceColor', ...
0
votes
1answer
66 views
data missing from string with multiple colon
Try this, and you'll notice the 1st data with the colon is missing. why & how to solve this?
trace("1"+":"+"2"+":"+"3"+":"+"4")
3
votes
3answers
615 views
Why colons precede variables in Common Lisp
What does the syntax, colons preceding variable in Common Lisp, mean? I've seen programs with such, and I'll present some sample code here, out of a large set of functions.
(defun expand (successorf ...
0
votes
1answer
291 views
lxml tag name with a “:”
I am trying to create an xml tree from a JSON object using lxml.etree. Some of the tagnames contin a colon in them something like :-
'settings:current' I tried using
'{settings}current' as the ...

