Tagged Questions
The multibyte tag has no wiki summary.
12
votes
2answers
281 views
Why does POSIX specify wctomb as non-thread-safe, but not mbtowc?
In XSH 2.9.1, wctomb is listed as one of the functions which is not required to be thread-safe. However, the opposite conversion function, mbtowc, does not appear in the list. On an implementation ...
12
votes
5answers
5k views
UTF8 vs. UTF16 vs. char* vs. what? Someone explain this mess to me!
I've managed to mostly ignore all this multi-byte character stuff, but now I need to do some UI work and I know my ignorance in this area is going to catch up with me! Can anyone explain in a few ...
11
votes
10answers
1k views
Split a sentence into separate words
I need to split a Chinese sentence into separate words. The problem with Chinese is that there are no spaces. For example, the sentence may look like: 主楼怎么走 (with spaces it would be: 主楼 怎么 走).
At the ...
11
votes
1answer
2k views
Ruby 1.9: how to properly upcase/downcase multibyte strings?
So matz took the questionable decision to keep upcase and downcase limited to /[A-Z]/i in ruby 1.9.1.
ActiveSupport::Multibyte has long had great i18n case jiggering in ruby 1.8.x via ...
11
votes
3answers
1k views
What do these PHP mbstring settings do?
I'm trying to figure out exactly what these php.ini settings do. What happens when they're set to different values? When are they necessary? When are they harmful?
mbstring.language
...
9
votes
4answers
1k views
str_replace() on multibyte strings dangerous?
Given certain multibyte character sets, am I correct in assuming that the following doesn't do what it was intended to do?
$string = str_replace('"', '\\"', $string);
In particular, if the input ...
8
votes
4answers
1k views
How does UTF-8 “variable-width encoding” work?
The unicode standard has enough code-points in it that you need 4 bytes to store them all. That's what the UTF-32 encoding does. Yet the UTF-8 encoding somehow squeezes these into much smaller ...
7
votes
1answer
58 views
PHP: is the implode() function safe for multibyte strings?
The explode() function has a correlating multibyte-safe function in mb_split().
I don't see a correlating function for implode(). Does this imply that implode is already safe for multibyte strings?
7
votes
2answers
311 views
Merging two Regular Expressions to Truncate Words in Strings
I'm trying to come up with the following function that truncates string to whole words (if possible, otherwise it should truncate to chars):
function Text_Truncate($string, $limit, $more = '...')
{
...
6
votes
1answer
661 views
How can I tell if a string contains multibyte characters in Javascript?
Is it possible in Javascript to detect if a string contains multibyte characters? If so, is it possible to tell which ones?
The problem I'm running into is this (apologies if the Unicode char doesn't ...
5
votes
2answers
359 views
What is the purpose of the s==NULL case for mbrtowc?
mbrtowc is specified to handle a NULL pointer for the s (multibyte character pointer) argument as follows:
If s is a null pointer, the mbrtowc() function shall be equivalent to the call:
...
5
votes
3answers
949 views
Parsing multibyte string in PHP
I would like to write a (HTML) parser based on state machine but I have doubts how to acctually read/use an input. I decided to load the whole input into one string and then work with it as with an ...
5
votes
3answers
78 views
How to locate a sequence of values (specifically, bytes) within a larger collection in .NET
I need to parse the bytes from a file so that I only take the data after a certain sequence of bytes has been identified. For example, if the sequence is simply 0xFF (one byte), then I can use LINQ on ...
4
votes
5answers
357 views
Get size of a std::string's string in bytes
I would like to get the bytes a std::string's string occupies in memory, not the number of characters. The string contains a multibyte string. Would std::string::size() do this for me?
EDIT: Also, ...
4
votes
4answers
114 views
(鉑) string functions and UTF8 in php
Why is the output of the following statement 3 and not 1?
echo mb_strlen("鉑");
Thing is that
echo "鉑";
will properly output this sign which is encoded as UTF-8.
4
votes
2answers
422 views
ARM Cortex-A8: How many bytes are fetched in one memory read?
I'm trying to improve my image processing project running on an ARM cortex-a8 processor.
I was accessing 8-bit Grayscale Image data from memory. In my function, right now I'm accessing individual ...
4
votes
6answers
1k views
How to check if the word is Japanese or English using PHP
I want to have different process for English word and Japanese word in this function
function process_word($word) {
if($word is english) {
/////////
}else if($word is japanese) {
...
4
votes
3answers
525 views
Variable-byte encoding clarification
I am very new to the world of byte encoding so please excuse me (and by all means, correct me) if I am using/expressing simple concepts in the wrong way.
I am trying to understand variable-byte ...
3
votes
5answers
564 views
Fastest bitwise xor between two multibyte binary data variables
What is the fastest way to implementat the following logic:
def xor(data, key):
l = len(key)
buff = ""
for i in range(0, len(data)):
buff += chr(ord(data[i]) ^ ord(key[i % l]))
...
3
votes
1answer
149 views
Limiting the length of a URL encoded string with multibyte characters in .NET
I am using .NET, and I need to truncate a string that may contain multibyte characters so that it will not be over a set length once it is URL encoded. This seems like something that would be built ...
3
votes
4answers
506 views
regular expression to detect consecutive numbers - not working for non-English input
Hi All I have this code that checks for 5 or more consecutive numbers :
if (preg_match("/\d{5}/", $input, $matches) > 0)
return true;
It works fine for input that is English, but it's tripping ...
3
votes
3answers
2k views
multibyte strtr() -> mb_strtr()
Does anyone have written multibyte variant of function strtr() ? I need this one.
Edit 1 (example of desired usage):
Example:
$from = 'ľľščťžýáíŕďňäô'; // these chars are in UTF-8
$to = ...
3
votes
5answers
2k views
Are the PHP preg_functions multibyte safe?
There are no multibyte 'preg' functions available in PHP, so does that mean the default preg_functions are all mb safe? Couldn't find any mention in the php documentation.
3
votes
3answers
192 views
How to get the exact number of multibyte characters?
I tried:
mb_strlen('普通话');
strlen('普通话');
both of them output 9,while in fact there are only 3 characters.
What's the right way to count characters?
3
votes
9answers
5k views
What is a multibyte character set?
Does the term multibyte refer to a charset whose characters can - but don't have to be - wider than 1 byte, (e.g. UTF-8) or does it refer to character sets which are in any case wider than 1 byte ...
2
votes
2answers
56 views
Splitting a multibyte string in Lua
I have a multibyte string in lua.
local s = "あいうえお"
How do I take the string and split it into a table of strings?
In English texts, then I can use this code. But this does not work with the ...
2
votes
1answer
49 views
MySQL LOWER() function not multi-byte safe for the º character?
When I encoding the following character to UTF-8:
º
I get:
º
Then with º stored as a field value, I select the field with the LOWER() function and get
âº
I was expecting it to respect that ...
2
votes
4answers
113 views
Php cannot find way to split utf-8 strings
i just started dabbling in php and i'm afraid i need some help to figure out how to manipulate utf-8 strings.
I'm working in ubuntu 11.10 x86, php version 5.3.6-13ubuntu3.2. I have a utf-8 encoded ...
2
votes
1answer
56 views
PHP replace … with
I have a txt file (File encoded in ANSI according to Notepad++) that has '…' in it. I am reading in the file line by line, and I would like to replace … with ...
Everything I try seems to fail
$str ...
2
votes
4answers
271 views
How can i suppport both Unicode and Multi-Byte Character Set in my code?
i must say im new to win32 c++ programming so i face a problem that
some code compile in Multi-Byte Character Set and not in Unicode Character Set.
how can my code support both ?
for example this NOT ...
2
votes
4answers
217 views
UTF-8 characters don't display correctly
This is my PHP code:
<?php
$result = '';
$str = 'Тугайный соловей';
for ($y=0; $y < strlen($str); $y++) {
$tmp = mb_substr($str, $y, 1);
$result = $result . $tmp;
}
echo 'result = ' . ...
2
votes
1answer
147 views
Help with PHP and multibyte characters
I have a problem that I thought would be simple but it's turning out to be quite complex.
I have a long UTF-8 string that is a mix of Roman, Western-European, Japanese, and Korean characters and ...
2
votes
1answer
339 views
Hitting ORA-01461 when inserting multibyte characters from perl into oracle
I have a perl script that is inserting records from a text file into our database. Whenever the record has a multibyte character like "RODR_Í_GUEZ". I receive the error ORA-01461, however i'm nowhere ...
2
votes
1answer
56 views
php extension: how do I use the the mb_* functions
There's a lot of functionality available in PHP for scripts. Is this functionality available somehow to the extension writer? I'd really like to use the multibyte functions but can't find an example ...
2
votes
3answers
254 views
How to output multiple byte characters normally in c/c++ console application?
printf("%s\n", multibytestring);
By default the multi-byte characters will show up like ??? in console, how can I fix it?
2
votes
2answers
471 views
strpos searching for unicode in PHP (and handling inline UTF-8)
I am having a problem dealing with a simple search for a two character unicode string (the needle) inside another string (the haystack) that may or may not be UTF-8
Part of the problem is I don't ...
2
votes
2answers
325 views
removing multibyte characters from a file using sed
i need to remove all multibyte characters from a file, i dont know what they are so i need to cover the whole range.
I can find them using grep like so:
grep -P "[\x80-\xFF]" 'myfile'
Trying to do a ...
2
votes
4answers
867 views
Why doesn't wstring::c_str cause a memory leak if not properly deleted
Code Segment 1:
wchar_t *aString()
{
wchar_t *str = new wchar[5];
wcscpy(str, "asdf\0");
return str;
}
wchar_t *value1 = aString();
Code Segment 2
wstring wstr = L"a value";
...
2
votes
2answers
1k views
How to get byte size of multibyte string
How do I get the byte size of a multibyte-character string in Visual C? Is there a function or do I have to count the characters myself?
Or, more general, how do I get the right byte size of a TCHAR ...
2
votes
1answer
690 views
Converting from ANSI to Unicode
I'm using Visual Studio .NET 2003, and I'm trying to convert a program written in purely ANSI characters to be independent of Unicode/Multi-byte characters.
The program has a callback function of ...
2
votes
3answers
2k views
Unicode vs Multi-byte
I'm really confused by this unicode vs multi-byte thing.
Say I'm compiling my program in Unicode (but ultimately, I want a solution that is independent of the character set used).
1) Will all 'char' ...
2
votes
3answers
772 views
Truncate a multibyte String to n chars
I am trying to get this method in a String Filter working:
public function truncate($string, $chars = 50, $terminator = ' …');
I'd expect this
$in = ...
2
votes
4answers
368 views
Is there even fast implementaion about multibyte character string convert to unicode wstring?
In my project, where I adopted Aho-Corasick algorithm to do some message filter mode in the server side, message the server got is string of multibyte character. But after several tests I found the ...
2
votes
1answer
620 views
Problem with diacritics and mb_substr
I am slicing unicode string with diacritics using mb_substr function but it works as I would use simple substr function. It splits unicode characters in half displaying question marked diamond.
E.g.
...
2
votes
3answers
517 views
ruby 1.9: how do I get a byte-index-based slice of a String?
I'm working with UTF-8 strings. I need to get a slice using byte-based indexes, not char-based.
I found references on the web to String#subseq, which is supposed to be like String#[], but for bytes. ...
2
votes
5answers
514 views
How do I use CharNext in the Windows API properly?
I have a multi-byte string containing a mixture of japanese and latin characters. I'm trying to copy parts of this string to a separate memory location. Since it's a multi-byte string, some of the ...
2
votes
3answers
141 views
Where can I get a complete list of all multi-byte functions for PHP?
Where can I get a complete list of all multi-byte functions for PHP? I need to go through my application and switch the non MB string functions to the new mb functions.
2
votes
4answers
570 views
rename not supporting multi-byte characters
If I write:
rename('php109.tmp','test.jpg');
then it's fine and working.
but if I change it into:
rename('php109.tmp','中文.jpg');
it'll report "No such file or directory...".
But the multi-byte ...
2
votes
3answers
2k views
P/Invoke with [Out] StringBuilder / LPTSTR and multibyte chars: Garbled text?
I'm trying to use P/Invoke to fetch a string (among other things) from an unmanaged DLL, but the string comes out garbled, no matter what I try.
I'm not a native Windows coder, so I'm unsure about ...
1
vote
2answers
32 views
Find a space in UTF-8 strings, do I need mb_strpos?
I have a string in UTF-8.
$string = "ãçé êíõ";
I need to find the position of the space.
I have to use mb_strpos($string,' '); ?