Welcome to the Question2Answer Q&A. There's also a
demo
if you just want to try it out.
Login
Login
Register
All Activity
Questions
Hot!
Unanswered
Tags
Users
Ask a Question
About
Wiki
Welcome to the Q&A for
Question2Answer
.
If you have questions about the platform,
click here to ask
and please use English.
If you just want to try Q2A, please use the
demo
, which also grants admin access.
Apr 29:
Q2A 1.5.2
Related questions
How are "Related questions" chosen for a question that has no tags?
Which Tags are allowed? Where are they processed?
Only single word tags are available ?
Type-ahead tag matching does not work for all tags
Problem: Question form does not submit tags as before, what can I do ?
Showing number / count of tags in 1.5 (quick tutorial)
Including tags in question URL
How to show recent tags in sidebar ?
How To List Tags In Alphabetical Order?
change the + to - in , seperated tags
All categories
Q2A Core
(3,252)
Plugins
(356)
special chars are not accepted in tags
+3
votes
special chars are not accepted in tags, words like C++, .net, asp.net etc where as it accepts words like c#.
please look into this.
tags
asked
Apr 25, 2010
in
Q2A Core
by
ProThoughts
Please
log in
or
register
to add a comment.
Please
log in
or
register
to answer this question.
1 Answer
+1
vote
Best answer
This is happening because most punctuation characters (except $ & - _ # % @) are treated as word breaks, so can't be included in tags. You can add other characters by removing them from the $matchstring variable in qa_string_to_words(...) in qa-util-string.php - this is actually a regular expression, so you need to remove the \ before any character you remove.
answered
Apr 25, 2010
by
gidgreen
Show 2 previous comments
For version 1.3, change the line in qa-util-string.php that starts with:
define('QA_PREG_INDEX_WORD_SEPARATOR', ...
It is working fine, thanks!
Please
log in
or
register
to add a comment.