Tagged Questions
The chars tag has no wiki summary.
5
votes
3answers
177 views
JQuery load() and national letters(like ę,ą,ć)
I'm using JQuery load() method to load content to page. The only problem is, when content is loaded via load() method all national(polish) chars are displaying invalid... On both pages loaded and ...
4
votes
3answers
471 views
Best way to create SEO friendly URI string
The method should allows only "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-" chars in URI strings.
What is the best way to make nice SEO URI string?
2
votes
2answers
90 views
Problem with string - lenght is not correct - some chars included not displayed
I wanted to upgrade the Magento Ogone module to match the new SHASign calculation.
It's working fine now but there is a problem ...
I have an issue with some strings returned by a Magento method : ...
2
votes
1answer
102 views
Send chars with UDP
I'm trying to send text with UDP, by sending every character separately, but something seems to be wrong.
This is the client:
while(strcmp(sir,"0")!=0)
{
printf("Text number %d:", i);
i++;
...
2
votes
2answers
106 views
How can I get the equivalent non-utf8 chars from a utf8 string?
ruby 1.8.6, rails 2.3.8
Im doing some evals to write some methods to a class, and its working out nice(first time playing w/ metaprogramming :p), except that some strings that need to go into the ...
2
votes
3answers
224 views
How do I change a string at position
I'm aimed at speed, must be ultra fast.
string s = something;
for (int j = 0; j < s.Length; j++)
{
if (s[j] == 'ь')
if(s.Length>(j+1))
...
2
votes
2answers
361 views
C++: Chr() and unichr() equivalent?
I could have sworn I used a chr() function 40 minutes ago but can't find the file. I know it can go up to 256 so I use this:
std::string chars = "";
chars += (char) 42; //etc
So that's alright, but ...
2
votes
3answers
2k views
Comparing chars in a character array with strcmp
I have read an xml file into a char [] and am trying to compare each element in that array with certain chars, such as "<" and ">". The char array "test" is just an array of one element and ...
2
votes
8answers
1k views
significance of negative values of type char in C
chars in 'C' are used to represent characters.
Numbers representing characters in all code pages are always positive.
What is the use of having signed characters?? Are negative values contained in ...
2
votes
6answers
376 views
Special chars in Python
i have to use special chars in my python-application.
For example: ƃ
I have information like this:
U+0183 LATIN SMALL LETTER B WITH TOPBAR
General Character Properties
In Unicode since: 1.1
Unicode ...
2
votes
5answers
7k views
Putting char into a java string for each N characters
I have a java string, which has a variable length.
I need to put the piece "<br>" into the string, say each 10 characters.
For example this is my string:
`this is my string which I need to ...
1
vote
4answers
59 views
how to change all chars in string with numbers in C#?
i want to change chars with numbers, for example: a with 1, b with 2... z with 26. so the string "hello" will be something like this: 82491513621. the first question is: how to do this with easiest ...
1
vote
2answers
139 views
HTML → / ← not displayed on some systems
I'm making heavy use of → / ← arrow symbols in HTML so that i spare myself the pain of having to go with images. This is for an enclosed system, not for a public website.
Now i noticed that ...
1
vote
7answers
68 views
C langugage - “Weird” characters in char[] output
I had to build a C program which convert's infix notation into postfix notation using STACK. That went well and it's working in some way. It was long ago when I used last time C language so I'm ...
1
vote
4answers
78 views
Array sort by value number chars
Hi thinking i have an array like this :
[0]=>[
[0]=>'Hey',
[1]=>'H',
[2]=>'He',
]
now i would like to sort by number chars and return somenthing like this:
[0]=>[
...
1
vote
2answers
85 views
Curious trigraph sequence thing about ansi C
What was is it the original reason to use trigraph sequence of some chars to become other chars in ansi C like:
??=define arraycheck(a, b) a??(b??) ??!??! b??(a??)
becomes
#define arraycheck(a, b) ...
1
vote
2answers
314 views
Test if two first chars typed in are alphanumeric - no regex
I have following code that needs something smart to deal with typed in chars and detection:
private final MultiWordSuggestOracle mySuggestions = new MultiWordSuggestOracle();
private final ...
1
vote
1answer
30 views
Advice on solving UD in low level management functions
I'm fairly new to C and have started out writing a small library with functionality to get length of strings, reversing strings, converting binary data in char buffers to ints and shorts. Just for the ...
1
vote
2answers
166 views
Unable to remove invisible chars using Regex
I want to remove any invisible chars from a string, only keep spaces & any chars from 0x20-0x7F,
I use this: Regex.Replace(QueryString, @"[^\s\x20-\x7F]", "");
However it does not work
...
1
vote
3answers
230 views
Chars scrambling (C# and Javascript)
I need to scramble chars in word. And this scrambling must not be random. In other words, each time of scrambling (on the same word) the new result must be equal to last scramble result (on the same ...
1
vote
1answer
129 views
php true multi-byte string shuffle function?
I have a unique problem with multibyte character strings and need to be able to shuffle, with some fair degree of randomness, a long UTF-8 encoded multibyte string in PHP without dropping or losing or ...
1
vote
1answer
329 views
Django: How do I quote and unquote special characters in the same template?
My app has a 'tags' functionality. I want to allow special characters (like '+' and '.') and, as a result, I need to escape these characters in the url:
<a href="/tags/{{ tag|ESCAPED ...
1
vote
2answers
106 views
RewriteRule .? only for one or more chars?
On the net I found several ways of defining a RewriteRule like:
RewriteRule .? 404.php [L]
RewriteRule . 404.php [L]
RewriteRule ^ 404.php [L]
But why would these work when entering a garbage url? ...
1
vote
9answers
332 views
Segmentation fault when appending two chars - C++
I am trying to append two chars but for some reason I am getting a segmentation fault.
My code is like;
#include <string.h>
char *one = (char*)("one");
char *two = (char*)("two");
strcat(one, ...
1
vote
1answer
276 views
ANTLR: Lexer rule accepting strictly one letter, and a token of multiple chars, instead of just one (Java)
I've written the below grammar for ANTLR parser and lexer for building trees for logical formulae and had a couple of questions if someone could help:
class AntlrFormulaParser extends Parser;
...
1
vote
7answers
482 views
.NET RegEx - First N chars of First M lines
I want 4 general RegEx expressions for the following 4 basic cases:
Up to A chars starting after B chars from start of line on up to C lines starting after D lines from start of file
Up to A chars ...
1
vote
2answers
403 views
jQuery - How to convert string from textbox to bytes?
i need to convert a string from a text field to bytes. How can i do that?
Reason: The text on the textbox will be sent by SMS to the client, and I've limited
the text to 160chars but if i put special ...
1
vote
3answers
354 views
Return a pointer to a char array in C
I've seen a lot of questions on that on StackOverflow, but reading the answers did not clear that up for me, probably because I'm a total newbie in C programming. Here's the code:
#include ...
1
vote
2answers
244 views
PHP is there a built-in function to render ' as ’ etc
is there a built-in function to render characters like ' as identities (’) ?
also, is it unsafe to output raw characters (e.g ') in the html?
thanks.
1
vote
1answer
448 views
simplyXML and accented characters in PHP
I have written an XML file which is using the ISO-8859-15 encoding and most of the data within the feed is ran through htmlspecialchars().
I am then using simplyxml_load_string() to retrieve the ...
1
vote
3answers
3k views
java newline character insertion
how can i insert a newline character in a java applet program if i am using "label" instead of sys.out.println??
thanks in advance
0
votes
0answers
24 views
Sending an email from Delphi using Indy changes Danish chars
I have made a form that I use to send a mail using Indy. The form can be used to attach files as well.
All this is working very fine when I use the sample in the link below and when I use it in a ...
0
votes
0answers
31 views
Jquery Autocomplete Accents Chars
there's an issue with this script
http://forum.jquery.com/topic/jquery-autocomplete-accents
I'm trying using this version to generate an autocomplete list with words with accented chars
But it ...
0
votes
1answer
55 views
CakePHP Images with special chars in name are not displayed
I'm using CakePHP 2.0.4, PHP 5.3.1, Apache 2.2.14.
For example: the filename is F#7m7~1.gif. It really exists, the path and filename are correct.
Before print HTML tag, I encode it by using ...
0
votes
2answers
27 views
map integer values to chars in array
I've got a method that generates random strings:
def generate_letters(length)
chars = 'ABCDEFGHJKLMNOPQRSTUVWXYZ'
letters = ''
length.times { |i| letters << ...
0
votes
3answers
61 views
converting integers to chars in C(according to ASCII table)
been searching everywhere, but couldn't the correct answer.
the problem is pretty simple:
i have to convert ASCII integer values into char's.
for example, according to ASCII table, 108 stands for ...
0
votes
1answer
37 views
Are digits in JavaScript regarded as chars?
Given the following Regular Expression in JavaScript:
56\d.*
Above would match e.g. 45678. So my Question is: are digits in JavaScript chars?
*d Matches any single digit, . Matches any char except ...
0
votes
1answer
44 views
Trim node inside views
I have a view (Drupal 7), filled with nodes. And I got a trimmer on 200 chars on the body. But as it happens, somethimes a word is cut in half. How do I get to trimm Drupal on words in stead of chars? ...
0
votes
0answers
19 views
phpQuery making  of and others
When I have a file that I run through phpQuery that has stuff like or © in it somehow a  is added.
so when I have this file (hello.html):
hello, this is a test ©
and ...
0
votes
1answer
153 views
Ruby - how to select first chars from string
I am trying to find a function for select e.g. first 100 chars of the string. In PHP exist substr function
Have Ruby some similar function?
Thanks a lot,
M.
0
votes
0answers
136 views
Own Android hardware keyboard shortcuts
I want to make own shortcuts to use with hardware keyboard on android phones like Milestone/Droid, T-Mobile G1/HTC Dream and T-Mobile G2/Desire Z.
It will be cool to have alt+e shortcut to make ę for ...
0
votes
1answer
62 views
Why are these characters in PHP getting converted?
I am getting some information like large amounts of text from the database, but while echoing using PHP, the characters are being changed. How do I get it to display the normal thing? Thanks.
//makes ...
0
votes
5answers
706 views
Getting a too many characters in charater literal error. Please help!
I'm struggling with a piece of code and getting the error:
too many characters in charater literal error
Using C# and switch statement to iterate through a string buffer and reading tokens, but ...
0
votes
1answer
221 views
Converting int to Char* giving ascii values C++
hi im trying to intialize a variable
im calling it
int Score;
char Buffer[1024];
im using SDL so to display them i had to convert Score to char
With this im incrementing the score
...
0
votes
3answers
111 views
Storing Chars Into Strings in C++
So right now I have this code that generates random letters in set increments determined by user input.
#include <iostream>
#include <string>
#include <cstdlib>
using namespace ...
0
votes
7answers
1k views
How to convert from integer to unsigned char in C, given integers larger than 256?
As part of my CS course I've been given some functions to use. One of these functions takes a pointer to unsigned chars to write some data to a file (I have to use this function, so I can't just make ...
0
votes
3answers
76 views
Where in the ruby doc is string.chars defined?
I've been learning ruby by solving project euler problems and in one solution to a problem I saw you could do something like "12341".chars.inject(1) { |prod, n| prod * n.to_i }.
I've looked on the ...
0
votes
3answers
115 views
Whats the best charts jQuery plugin to use on my App?
Hi all,
i'm making an application based on jQuery and i need the best charts plugin to show the information to the client.
My app is litteraly like Google AdWords and Google AdSense. I need to show to ...
0
votes
3answers
120 views
french chars html - javascript
I have an html page were i can fill in some text and send (with javascript) this to an sql-database.
On my pc, everything works fine, but on another one (a french windows), it doesn't save my chars ...
0
votes
3answers
277 views
BSTR and SysAllockStringByteLen() in C++
I'm new to C++, so this may be a noobish question; I have the following function:
#define SAFECOPYLEN(dest, src, maxlen) \
{ ...