punctuation

Inverted question mark only on Microsoft Office applications

My dad has a notebook and the key which has the "/?°" symbols acts like ctrl. Known factory problem. Anyway, his keyboard also has a "?" marked under the "w" key. Pressing "ctrl + alt + w" will display the "?" character (question, interrogation mark). Except on Office applications, like Word and Outlook, which will output "¿". I've se...

Is there a search engine that searches for the exact words you enter, exactly how you entered them?

Is there a search engine that has some of the following features? Case sensitive: "LaTeX" != "latex" Doesn't mess with punctuation in a quoted phrase: "Yes!!!" != "Yes?" Doesn't search for words that have the same stem: "fracture" != "fractured" ...

In Erlang, when do I use ; or , or .?

I've been trying to learn Erlang and have been running into some problems with ending lines in functions and case statements. Namely, when do I use a semicolon, comma, or period inside my functions or case statements? I've gotten stuff to work, but I don't really understand why and was looking for a little more information. ...

Strip all punctuation from a string in VB.net

The title says it all. How do I strip all punctuation from a string in vb.net? I really do not want to do stringname.Replace("$", "") for every single bit of punctuation, though it would work. How do i do this quickly and efficiently? Other than coding something that codes this for me.... ...

Terminal Services on Windows Mobile - "Paste" doesn't preserve punctuation?

I have here a Windows Mobile-based PDA (Mobile Compia M3 Sky) equipped with a barcode scanner. This barcode scanner works by reading the data from the scanner into the Clipboard and then simulating a Paste on whatever application is currently running. The problem is, when you're using Terminal Services from the device and you scan a bar...

How to convert multi-byte punctuations to single byte ones with PHP?

For example,both , and , are commas,but the first one takes 2 byte,while the second one only 1. How to convert the 2 byte one to 1 byte? ...

Using magic strings or constants in processing punctuation?

We do a lot of lexical processing with arbitrary strings which include arbitrary punctuation. I am divided as to whether to use magic characters/strings or symbolic constants. The examples should be read as language-independent although most are Java. There are clear examples where punctuation has a semantic role and should be identifi...

SQL Server: How do you remove punctuation from a field?

Hey everyone, Any one know a good way to remove punctuation from a field in SQL Server? I'm thinking UPDATE tblMyTable SET FieldName = REPLACE(REPLACE(REPLACE(FieldName,',',''),'.',''),'''' ,'') but it seems a bit tedious when I intend on removing a large number of different characters for example: !@#$%^&*()<>:" Thanks in advance ...

Ending with period using Mod Rewrite

I would like to know how to allow periods at the end on my url's. Currently if I had the url: http://www.mydomain.com/Page/I.D.K. The page grabbing the information would return Title: I.D.K (Without the ending period) This also happens with other punctuation and it is effecting my pages displaying information wrongly. Thanks for look...

Punctuation in LaTeX formulas

It seems to be common practice, when writing mathematics, to add punctuation to displayed formulas. Is there any trick to avoid putting the punctuation mark inside the formula? I want to avoid Consider the function \[ \sin(x).\] I'd rather have something like: Consider the function \[ \sin(x)\]. But of course the full stop is dis...

How to write a quomma

I'd like to start using question marks at the end of clauses as well as sentences. To indicate this I would like to use a question mark with a comma underneath, which I'd like to call a quomma. There doesn't seem to be a Unicode code point for this unconventional punctuation, so what is the most Web-friendly way of doing this? The com...

Code related web searches

Is there a way to search the web which does NOT remove punctuation? For example, I want to search for window.window->window (Yes, I actually do, this is a structure in mozilla plugins). I figure that this HAS to be a fairly rare string. Unfortunately, Google, Bing, AltaVista, Yahoo, and Excite all strip the punctuation and just show any...

Should I use proper punctuation for single sentence alert/notification popups?

Is it necessary to use a period for single sentence notification boxes? Even though its considered proper grammar to do so, it just looks ugly and feels too formal. Here are two screenies for comparison (first includes period, second doesn't). ...

How do I seperate Punctuations in a sentence with a space between each phrase and punctuation in C++?

I want to write a program in c++ that get a sentence and insert a space between each word and punctuation in it! in sed script this is done with this expression: sed -e "s/,\([^0-9]\)/ , \1/g" -e "s/\.\([^0-9]\)/ . \1/g" -e 's/\.[ ]*$/ ./g' -e "s/\'/ \' /g" -e 's/?/ ?/g' -e 's/\`\`/ `` /g' -e "s/\' \'/''/g" -e 's/(/ ( /g' -e 's/)/ ) /g...

Solr: strip punctuation before index

I am having a problem with striping punctuation from the solr index When the punctuation sign follow right after a word then this word is not indexed properly. For example: if we index "hello, John", the asset won't be found by keyword "hello" while there will be no issue if we remove comma after word "hello". Is there any FilterFactor...

How can I prevent line breaks between words and punctuation in Flex UITextField?

I am rendering html in a Flex 3.x UITextField. The problem I am facing now is that when punctuation is at the end of a word, it can sometimes be wrapped to the next line. For example: That which doesn't kill me makes me stronger ,so I became a developer. This seems like a bug in the algorithm to me. Is there a workaround? ...

wpf textblock punctuation moves when concatinating

Actually the problem arises only when the second string terminates with a period or parenthesis. It might involve other characters, but none of my sample data uses other punctuation. Here's the background. The app consists of two vertical scroll viewers. On the right are search criteria, on the left a variety of detail lists and fields....

Using Regular expression to replace repetitive punctuation?

Here is a sentence like this: Happy birthday!! I have a good day. :) I want to know how to process these sentence using regular expression to the following formate: Happy birthday! I have a good day. ...

How to convert a string into array in delphi ?

Dear experts: In php and java there are explode and tokenizer function to convert a string into array without punctuations. Are are functions or some way in delphi to do the work. Suppose there is a large file " This is, a large file with punctuations,, and spaces and numbers 123..." How can we get array "This is a large file with punct...