The underscore character, Unicode Character 'LOW LINE' (U+005F)

learn more… | top users | synonyms

1
vote
1answer
56 views

How to deal with a a xml file with hyphens using a perl parsing program

So I'm trying to parse an xml file with the following format ... <message> <cmd id="result_data"> <result-file-header> <path>PFMD</path> ...
4
votes
1answer
54 views

Override the JAXB property name using a xjb preserving the underscores

The custom xjb works great for overriding the names as desired however we lose the underscores in the names. <?xml version="1.0" encoding="UTF-8"?> <jxb:bindings ...
0
votes
2answers
42 views

Underscore Snippet

Note: I have Emmet installed onto Sublime Text 2 In my workflow I have a lot of projects were I have to put underscores in betwwn every word in a sentence. Is there a snippet I could build in sublime ...
1
vote
2answers
136 views

Remove whitespaces from filenames in Linux [closed]

I have hundreds of jpg files in different folders like this: 304775 105_01.jpg 304775 105_03.jpg 304775 105_05.jpg 304775 105_07.jpg 304775 105_02.jpg 304775 105_04.jpg 304775 105_06.jpg ...
7
votes
2answers
218 views

scala - Any vs underscore in generics

What is the different between the following Generics definitions in Scala: class Foo[T <: List[_]] and class Bar[T <: List[Any]] My gut tells me they are about the same but that the ...
0
votes
0answers
25 views

Leading underscores outside of the Standard Library [duplicate]

Operator< and strict weak ordering Of course you shouldn't actually use that code (at least without first renaming the variables). Leading underscores are bad outside the standard library ...
2
votes
1answer
213 views

Backbone: remove ellipsis onclick

A bit of background I'm trying to create a twitter like feed where the tweet/row will expand onclick, revealing more information. The data is pulled from a JSON file (sent from the backend to the ...
2
votes
0answers
78 views

Python Tools for Visual Studio: Way to remap dash key to underscore?

Using Visual Studio 2010 with Python Tools for Visual Studio. I find typing an underscore in python variable names inconvenient. Is there a way to remap the - (dash key) to the underscore and Shif+- ...
1
vote
1answer
82 views

Underscores causing issue with string function in Python

>>> str(NC_000117.1_01) in str(NC_000117.1_01_173_001_001) File "<stdin>", line 1 str(NC_000117.1_01) in str(NC_000117.1_01_173_001_001) ^ SyntaxError: invalid ...
0
votes
3answers
86 views

Force grouping of ascription on underscore in scala

I am trying to do: MyObject.myMethod(_:MyType.myAttribute) This fails with type myAttribute is not a member of object MyObject which is correct. The problem is that I want to call myMethod on ...
0
votes
6answers
107 views

using an underscore in a string [closed]

I tried to use an underscore inside of a string, but it seems to make the compiler allocate less bytes to the char array and run over the closing char ('\0'). what causing this? is there a way to ...
1
vote
1answer
183 views

Binding request parameters with underscores in Spring MVC 3.0

Consider the following requirement: request parameters have to be bound to objects using Spring MVC 3.0. The request parameters contain underscores (e.g. ...
10
votes
2answers
286 views

what does a underscore and interface name after keyword var in golang mean?

http://golang.org/src/pkg/database/sql/driver/types.go 30 type ValueConverter interface { 31 // ConvertValue converts a value to a driver Value. 32 ConvertValue(v interface{}) (Value, ...
1
vote
1answer
159 views

Python “private” name mangling and instance vs class attributes

I was writing a decorator that needs to access private variables and found this discrepancy. Can anyone explain this? (Python 2.5) Naming mangling works as expected for attributes defined in the ...
0
votes
1answer
254 views

Convert camelcase table and column names to snake case in mysql

I tried googling and stackoverflowing this but couldn't find an answer, so I thought I would post one. Currently I inherited a legacy system (PHP/MySQL) where the table and column names are defined ...
0
votes
3answers
152 views

Replacing spaces with underscores with php [closed]

This is a one very newbie question but i just can't figure out where the problem is so please bear with me... Here's what i am trying to achieve --> $new = 'OMG_This_Is_A_One_Stupid_Error'; ...
0
votes
3answers
3k views

Regular Expression for Alphabets with Only one space between Words

Good day Friends, I've a text field in my ASP.Net MVC form, and for this what I need is as follows: field should match only Alphabets with single space between words No spaces are allowed at the ...
1
vote
3answers
1k views

iOS: Usage of self and underscore(_) with variable [duplicate]

Possible Duplicate: How does an underscore in front of a variable in a cocoa objective-c class work? I have been very confused with using self or underscore with variable name after ...
1
vote
1answer
286 views

Pass underscore in knitr R code

I need to call a database that has underscores in the table names in an R chunk in knitr. There are a couple thousand table names, and changing the names would be a huge hassle. Something like: ...
0
votes
0answers
316 views

How to include underscore in Ruby Rest Client header?

I am currently creating a Ruby RESTful application and I have run into an issue with one of the headers that needs to be included in the request. The issue seems to be with the header parameter ...
0
votes
3answers
48 views

Underscore gives error in function

I have a FOR that runs the following line: for ($x=1;$x<=10;$x++) { $result=$question[$x]."<br /><b>Correct Answer: ".$question[$x]_answer."</b><br ...
0
votes
0answers
169 views

var with underscore won't run

I have a JQuery plugin that I use regularly with eBay sellers, I put in their eBay seller ID and I get results showing their live eBay listings. I have a seller who has an underscore in their ID name, ...
0
votes
1answer
200 views

Oracle underscore: JDBC query result order on linux different then result on MAC-OS or windows

I have a TABLE with two columns: ID      DESCRIPTION 1       first line 2       second line 3 ...
0
votes
4answers
152 views

Underscore Causing Difficulties

I have the following code, which is supposed to search through an array and see if the anything matches the second argument. def any(check: Set[Any], expr: Boolean): Boolean = { var checked = ...
1
vote
1answer
186 views

MySQL full text index underscore

I have a problem with MySQL's full text index, it treats underscore as part of a word (why? dunno). This is the string I have in my table, VA_-_Some_Album And this is the query for it: SELECT * ...
6
votes
2answers
121 views

Javascript in ten minutes: What is going on in this example code illustrating lazy scoping?

I've been re-reading Spencer Tipping's excellent Javascript in Ten Minutes and for the life of me can't figure out what is going on in this example of using lazy scoping to create syntactic macros: ...
2
votes
2answers
357 views

Check screen name for only one hyphen/underscore

I need to validate a user's screen name to make sure that it can not have more than one hyphen or underscore I don't want people's screen names to be all punctuation. This is the validation I have ...
1
vote
1answer
370 views

C# Code Style: Switching from “this.” prefix to “underscore”

I've been using the "this." prefix for about two years (StyleCop SA1102 rule). But now I'm changing my mind and using the "underscore" prefix for static and instance private fields and remove the ...
2
votes
1answer
248 views

IIS7 URL Rerwrite - how to replace all underscores with hyphens in a regex?

I am using the URL Rewrite feature in IIS7 to turn the url:       /main.asp?category=Name_Of_A_Product ...into:       /category/name-of-a-product/ I have created the ...
0
votes
4answers
157 views

How to combine a variable with a underscore and other word?

I need to combine a $variable with a underscore and word like this: $agent = agent id word is "declined." $newvar = $agent_declined; How can i do that?
0
votes
2answers
448 views

underscore to camelCase RegEx

Our standards have changed and I want to do a 'find and replace' in say Dreamweaver(it allows for RegEx or we just got Visual Studio 2010, if it allows for searching by RegEx) for all the underscores ...
8
votes
2answers
2k views

How can I convert from underscores to camel case with a regex?

How can I convert names with underscores into camel case names as follows using a single Java/Perl regular expression search and replace? underscore_variable_name -> underscoreVariableName ...
0
votes
1answer
137 views

Underscore notation in play framework

What exactly is the difference between ${post.title} and ${_post.title}?
2
votes
8answers
607 views

Why do you use underscore when coding and when? [closed]

I've been coding for like 3 years now and havent noticed that some people use underscore (_) sometimes. Question: Why should I use underscore and when? Is it part of code design or what?
0
votes
1answer
290 views

png images not loading in iOS simulator - underscore in filenames

I'm having trouble loading png images into my app. It seems to be an underscore in the filenames that is causing problems, but I don't understand why that would be the case. I thought that an ...
1
vote
4answers
1k views

Underscore between two image-links

I have the following HTML code inside a div: <a href="http://www.mysql.com"> <img src="images/php-power-micro2.png" alt="Image not available" title="PHP" border="0"/> </a> <a ...
2
votes
3answers
252 views

PHP SOAP operations that start with an underscore

With PHPs SOAP implementation, I can't call methods from the WDSL, if they start with an underscore. I.e.: $result = $server->_-testing_-getPrices(array('Receiver'=>'John')); DOESN'T WORK! ...
10
votes
4answers
4k views

Should I use “camel case” or underscores in python? [closed]

So which is better and why? def my_function(): or def myFunction():
8
votes
4answers
5k views

Why use camelCase in JavaScript? [closed]

I prefere using underscore instead of camelCase when I code in JavaScript. I know that standard it using camelCase. But are there any disadvantages using underscore when naming stuff in JavaScript? ...
1
vote
4answers
319 views

user-friendly URLs reliable with the database

I have a database containing a table named songs with a field title. Now If my url is http://www.foo.com/songs/xxx (xxx = the title of the song), apache is silently redirecting to a page that looks ...
16
votes
1answer
1k views

Scala underscore - ERROR: missing parameter type for expanded function

I know there have been quite a few questions on this, but I've created a simple example that I thought should work,but still does not and I'm not sure I understand why val myStrings = new ...
-1
votes
2answers
179 views

RegEx to replace trailing underscore with number of a string

I have an ID that looks like this: prefix_my-awesome-slug_123 Now I would like to have a regular expression that removes the underscore and number on the end (_%d).
1
vote
1answer
388 views

Using hyphen or underscore as word separator for files under Linux

I get always confused when I have to give a new name for a new data or executable file under linux, to use underscore or the dash to separate words in the name. My question: Are there any standard or ...
-1
votes
1answer
396 views

Array key name with underscore

i have simple PHP code below, parse_str($_SERVER['QUERY_STRING'], $paycodetnx); var_dump($paycodetnx); echo $paycodetnx['tnx_id']; output of var_dump($paycodetnx); array(6) { ["command"]=> ...
1
vote
1answer
161 views

How to turn off red underscore in comments in Netbeans?

There is a similar question : "Netbeans - Turn off - wavy red underlines - How?" But It's for earlier version, doesn't apply any more. I still want error to be underscored, just not in the comments, ...
4
votes
1answer
481 views

Is the proper Rails inflection of underscore 'underscoreize'?

It seems that with Rails/AR and the Inflector methods added to String by ActiveSupport, I would expect that by default, Nested::ClassDerived::FromAR.name.tableize == ...
0
votes
1answer
264 views

WildCard(Underbar) in C# Dataview select

When using the select method of a Dataview, I want to use a function such as underbar (wild card) of MS SQL Server. For example, to draw 3string that begin with same XX coming XXa, XX2, SQL uses ...
10
votes
2answers
801 views

C# Variable Name “_” only

I just hit with a minor issue in C#, it was just a copy-paste mistake but don't know how c# accept it. This code gets compiled successfully...HOW namespace DemoNS { class DemoClass { ...
6
votes
6answers
1k views

PHP - add underscores before capital letters

How can I replace a set of words that look like: SomeText to Some_Text ?
1
vote
3answers
516 views

PHP regex, replace all trash symbols with underscores

I can't get my head around a solid regex for doing this, still very new at all this regex magic. I had some limited success, but I feel like there is a simpler, more efficient way. I would like to ...

1 2