Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
8answers
741 views

Why do GUIDs and UUIDs have hyphens in them?

A colleague of mine was wondering why he couldn't just strip the hyphens from the uuid/guid before storing it. We couldn't work out what the hyphens were for... What is the reasoning behind them? ...
5
votes
7answers
3k views

HTML Tables - How to make IE not break lines at hyphens

I have some table cells containing dates formatted like this: 2009-01-01. I.E 7 seems to be breaking these into two lines at the hyphen. Is there any way to turn this off?
4
votes
2answers
81 views

How to import python module when module name has a '-' dash or hyphen in it?

I want to import foo-bar.py. This works: foobar = __import__("foo-bar") This does not: from "foo-bar" import * My question: Is there any way that I can use the above format i.e., from "foo-bar" ...
4
votes
2answers
370 views

dashes vs underscores in URL

In URL rewriting, i am quite confused that should i use underscore (_) OR hyphen (-) to replace spaces. According to this and this, hyphen should be used. But wikipedia uses underscores like ...
3
votes
4answers
416 views

curious case of hyphen and dash

I am trying to fetch records from Oracle 9i database whose value are 'FOO - BAR' for a particular column. The 'FOO - BAR' condition values are present in the table, But when I run the query, the ...
2
votes
2answers
66 views

Python Regex for hyphenated words

I'm looking for a regex to match hyphenated words in python. The closest I've managed to get is: '\w+-\w+[-w+]*' text = "one-hundered-and-three- some text foo-bar some--text" hyphenated = ...
2
votes
1answer
78 views

Why is Lucene sometimes not matching InChIKeys?

I have indexed my database using Hibernate Search. I use a custom analyzer, both for indexing and for querying. I have a field called inchikey that should not get tokenized. Example values are: ...
2
votes
4answers
2k views

Hyphens in column names in MySQL DB

May be this question has been answered before but I couldn't find it. I am using a 2/3 yr old MySQL database which has hyphens in its column names. When I try to use these names from my Java code, ...
2
votes
1answer
1k views

SQL Sorting and hyphens

Is there a way to easily sort in SQL Server 2005 while ignoring hyphens in a string field? Currently I have to do a REPLACE(fieldname,'-','') or a function to remove the hyphen in the sort clause. I ...
1
vote
6answers
259 views

perl regex for pulling out every comma, - hyphen,underscore,space and joining remaining words without spaces

I guess this would be a rather long regxex but is there a way to takeout underscores, spaces, commas, and hyphens from a string and then join the words together in PERL? EXAMPLE: _Car - Eat, Tree ...
1
vote
1answer
327 views

tackle different types of utf hyphens in ruby 1.8.7

We have different types of hyphens/dashes (in some text) populated in db. Before comparing them with some user input text, i have to normalize any type of dashes/hyphens to simple hyphen/minus (ascii ...
1
vote
3answers
277 views

MediaWiki: Can I make all links lowercase and use hyphen instead of underscore as word separator?

Can I make in Mediawiki links lowercase and use hyphen instead of underscore as word separator? Sort of what Wordpress or another wiki CMS does.
0
votes
1answer
80 views

How to allow hyphens in controller and action names in Kohana 3

I would like to use hyphens in my URLs, but since controllers are classes and actions are methods, they of course cannot have hyphens in them. I think for example that about-us looks a lot better in a ...
0
votes
1answer
114 views

How to remove hyphen token in lucene.net

I'm having problem with hyphen when searching. I thinks its because of the Standard Analyzer that I use so my question now is how to remove that hypen as part of the standard analyzer token. pls. ...
0
votes
1answer
178 views

UITextField string format

As the user is typing into a text field, is there a way to have the string conform to a format. So as the user is typing his string in every 5th character is proceeded by a hyphen in the UITextField ...
0
votes
1answer
267 views

How to make preg_match to find whole word but not separate hyphen-words?

if (preg_match('#\b'.$rawword.'\b#i',$body)) { This code finds whole words, but if they are a hyphen word like "ABLE-BODIED" it will find ABLE and BODIED separately. How can modify the expression ...
0
votes
1answer
731 views

How to allow fulltext searching with hyphens in the search query

I have keywords like "some-or-other" where the hyphens matter in the search through my mysql database. I'm currently using the fulltext function. Is there a way to escape the hyphen character? I ...
0
votes
1answer
117 views

Hyphen in ActiveRecord query

I have this active record query in CodeIgniter: $this->db->join('day-info', 'day-info.date = run-info.date'); It doesn't run as expected because for some reason it separates 'day' and 'info' ...
0
votes
4answers
377 views

Removing hyphens from a cell in Excel

I am looking to take the hyphen or dash out of a birthdate. 01/01/01 01-01-01 I need to combine the birthdate with other fields and it can't have the seperator in it. I am sure there is a better way. ...
0
votes
1answer
254 views

How do I get hyphens in my attribute names in Flex?

Flex has an issue with hyphens in xml. I need to generate an xml object with hyphens in the attribute for a Google Checkout implementation. I can get away with: var xml:XML = ...
0
votes
1answer
298 views

Error using a hyphen as an object property name in Flex

I'm trying to assemble a header object for an api request. One of the headers is 'Content-Type'. The hyphen is causing a compile error. Flex is giving me: 1050 - Cannot assign to a non-reference ...
0
votes
2answers
217 views

part of the vbscript code gets trashed with hyphens

on some computers, when a client opens the specific html page, part of the vbscript code on the client side gets trashed with hyphens. i saw that the vbscript code on that page was composed of one ...