Tagged Questions
The punctuation tag has no wiki summary.
8
votes
4answers
661 views
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 ...
7
votes
5answers
124 views
How to keep the delimiter while using RegEx?
I did a question about punctuation and regex, but it was confusing.
Supossing I have this text:
String text = "wor.d1, :word2. wo,rd3? word4!";
I'm doing this:
String parts[] = text.split(" ");
...
6
votes
1answer
282 views
Redefining “sentence” in Emacs? (single space between sentences, but ignoring abbreviations)
I would like to be able to navigate by sentence in Emacs (M-a, M-e). Here's the problem: by default, Emacs expects that each sentence is separated by two spaces, and I'm used to just putting a single ...
5
votes
3answers
229 views
Why is the hyphen conventional in symbol names in LISP?
What's the reason of this recommendation? Why not keeping consistent with other programming languages which use underscore instead?
4
votes
3answers
917 views
How to strip unicode “punctuation” from Python string
Here's the problem, I have a unicode string as input to a python sqlite query. The query failed ('like'). It turns out the string, 'FRANCE' doesn't have 6 characters, it has seven. And the seventh is ...
4
votes
9answers
167 views
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 ...
4
votes
4answers
1k views
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
...
3
votes
5answers
65 views
small issue with whitespeace/punctuation in python?
I have this function that will convert text language into English:
def translate(string):
textDict={'y':'why', 'r':'are', "l8":'late', 'u':'you', 'gtg':'got to go',
'lol': 'laugh out ...
3
votes
2answers
116 views
emacs M-e doesn't work properly in tex-mode
I'm using emacs and auctex to write LaTeX documents. For some reason, M-e doesn't move to the end of the sentence in tex-mode as it did when I went through the tutorial. It moves to the end of the ...
3
votes
3answers
283 views
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 ...
3
votes
2answers
154 views
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 ...
2
votes
1answer
32 views
Punctuation causing errors when reading a string with whitespace using sscanf in C
Update: Properly initialising string with char string[sizeof buffer - 1] has solved the crashing problem, but I'm still curious as to what having more than one punctuation mark had to do with it!
I ...
2
votes
3answers
49 views
Javascript regex validate password string (escaping punctuations)
I am trying to validate a password string with javascript and need some help with a regex. I have tried some tutorials, but I think I have some problems understanding how to escape quantifiers and/or ...
2
votes
3answers
120 views
What is the logic of C++ punctuator usage?
I am trying to discern the logic behind punctuator usage in C++. Particularly the semicolon.
This is my progress so far, with some questions:
A declaration introduces a type, class or object into a ...
2
votes
1answer
138 views
Lucene bigrams tokenizer to include punctuation signs
Is there any chance that I could use Lucene's ShingleAnalyzerWrapper to generate bigrams taking into account punctuation signs (i.e:.\,\;)? Quick example: given the field "one two; three four" would ...
2
votes
4answers
604 views
This regex to strip punctuation also incorrectly makes the word Báenou into Benou
The goal of this regex is to remove punctuation characters:
var myTxt = "Welcome, Visitor: The Royal Kingdom Of Báenou";
myTxt = myTxt.replace(/[^a-zA-Z0-9 ]+/g, '').replace('/ {2,}/',' ');
...
2
votes
1answer
175 views
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 ...
2
votes
2answers
526 views
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", ...
1
vote
2answers
29 views
Handle punctuation using Zend_Translate
Currently, I'm trying to apply Zend_Translate to the project I'm working on. Regular text works perfectly fine, but I ran into a problem with the translation of forms.
The translation adapter is ...
1
vote
2answers
71 views
runOnUiThread(new Runnable() { punctuation (token) issue
Somehow it doesn't work, according to me it should be this:
public void Splash(){
Timer timer= new Timer();
timer.schedule(new TimerTask(){
MexGame.this.runOnUiThread(new Runnable() {
...
1
vote
1answer
83 views
There is a library for String normalization in Java?
Yes, I know that there is a similar question, but I want a different thing.
I want to normalize punctuations, spaces, quotes, hyphens, etc., but not touch in the letters.
There a lot of different ...
1
vote
1answer
55 views
Given a string of words: How to find every word (case insensitive) in a varchar(1000) column in MySQL ignoring punctuation?
I have two database a and b with titles of scientific papers in them. I want to merge those databases to one single database c.
It is possible that a contains titles which are not in b and vice ...
1
vote
1answer
192 views
Bad line breaking in Eclipse javadoc comments
There's a minor but annoying bug, I think, in the Eclipse built-in Java formatter. I have a Javadoc comment that looks like this:
/**
* - - - stuff - - - {@code mTasksBelow}.
*/
where period at ...
1
vote
1answer
94 views
String has been split using punctuation as delimiters; how to reassemble and put the punctuation back in?
Im implementing a profanity filter by using a Trie data structure. Every swear word is added to the Trie. When I have a string to remove profanities from, I explode the string by using punctuations ...
1
vote
2answers
114 views
Strip punctuation in an address field in PHP
Hey all. I'm having some trouble getting punctuation to be stripped out of an address field...
Basically I want to take things like:
1234 Apple St. N.
And turn it into:
1234 Apple St N
A ...
1
vote
2answers
263 views
Remove the punctuation mark with regular expression?
I made this function to limit the length of a string in the output,
/* limit the lenght of the string */
function limit_length($content, $limit)
{
# strip all the html tags in the content
...
1
vote
3answers
69 views
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 ...
1
vote
7answers
3k views
SQL Server: How do you remove punctuation from a field?
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 ...
1
vote
2answers
116 views
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 ...
1
vote
3answers
2k views
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 ...
0
votes
1answer
87 views
Splitting a string after punctuation while including punctuation
I'm trying to split a string of words into a list of words via regex. I'm still a bit of a beginner with regular expressions.
I'm using nltk.regex_tokenize, which is yielding results that are close, ...
0
votes
1answer
73 views
Find and replace punctuation character in first column for multiple text files
Need a solution similar to this post (Find and replace a particular term in multiple files) but for a punctuation character replacement in the first column of each delimited tab text file.
Example:
...
0
votes
3answers
62 views
Is there an easy way to handle forms with PHP?
Dealing with forms in PHP has always given me major headaches. Primarily formatting; handling punctuation inside a form input, manipulating strings for database insertions, stripping when retrieving ...
0
votes
3answers
78 views
Regex to strip out everything but words and numbers (and latin chars)
Im trying to clean a post string used in an ajax request (sanitize before db query) to allow only alphanumeric characters, spaces (1 per word, not multiple), can contain "-", and latin characters like ...
0
votes
1answer
133 views
punctuation ereg_replace preg_replace
I have this snippet of code from an old OsCommerce install
$pattern = $this->attributes['SEO_REMOVE_ALL_SPEC_CHARS'] == 'true'
? "([^[:alnum:]])+"
: ...
0
votes
2answers
375 views
How to prevent EditText from breaking a line after punctuation
As default, an Android EditText will break a line if the line is longer than the view, like this:
Thisisalineanditisveryverylongs (end of view)
othisisanotherline
or if the line contains a ...
0
votes
1answer
89 views
Help! My @font-face punctuation is floating up?
So I have a typeface I've been including in a couple sites lately called Kondolar. It's a lovely typeface and I'm actually using 4 weights of the font, so there are actually 4 @font-face definitions ...
0
votes
3answers
119 views
Punctuation and the .next() method
Does anyone know how the Scanner's .next() method treats punctuation? I couldn't find the answer to this anywhere. I have a program that's reading each word in from a text file and I am unsure of how ...
0
votes
1answer
35 views
Basic Punctuation Symbol Errors
I'm receiving data from my database, and I'm showing it through echo statements, but for some reason all the basic punctuation eg (',") are all returning small diamonds with Questionmarks inside of ...
0
votes
3answers
442 views
MYSQL, ignore whitespace, punctuation, substitute accents in query
I need a way to use my dictionary with province abbreviations, full names and territories without having to add an entry for every possible misspelling of Ontario.
Table is as such:
state |name ...
0
votes
1answer
203 views
Android text punctuation error
Im getting weird text diplays in my android program. Every so often I get a weird symbol thats a capital A with a ^ on top....any ideas?
This is my code
package com.news;
import ...
0
votes
2answers
220 views
How do you handle invalid characters in MySQL
I just started converting the data on my site from XML to MySQL and I am running into some syntax errors when I use this puncuation mark: '
Is there any way to let MySQL know about that character. ...
0
votes
3answers
104 views
common meanings of punctuation characters
I'm writing my own syntax and want characters that do not have obvious common meanings in that syntax [1]. Is there a list of the common meanings of punctuation characters (e.g. '?' could be part of a ...
0
votes
3answers
387 views
PHP regular expression to match alpha-numeric strings with some (but not all) punctuation
I've written a regular expression in PHP to allow strings that are alpha-numeric with any punctuation except & or @. Essentially, I need to allow anything on a standard American keyboard with the ...
0
votes
3answers
337 views
SOLR ignoring comma and other punctuation while searching
I want to search 100,000 and 100000 only by querying 100000
(or only by querying 100,000).
Is it possible to search like that.
The purpose to perform this is, that user may add a comma at any ...
0
votes
3answers
475 views
How to convert a string into array in delphi?
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 " ...
0
votes
0answers
91 views
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 ...
0
votes
2answers
248 views
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 ...
0
votes
1answer
178 views
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 ...
0
votes
2answers
179 views
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 ...