PHP (mbstring) provides multibyte specific string functions that help you deal with multibyte encodings

learn more… | top users | synonyms (1)

0
votes
2answers
24 views

wxTextCtrl OSX mutated vowel

i am using wxMac 2.8 in non-unicode build. I try to read a file with mutated vowels "ü" to a wxtextctrl. When i do, the data gets interpreted as current encoding, but it is a multibyte string. I ...
0
votes
2answers
64 views

mb_detect_encoding detects ASCII as UTF-8?

I'm trying to automatically convert imported IPTC metadata from images to UTF-8 for storage in a database based on the PHP mb_ functions. Currently it looks like this: $val = ...
2
votes
1answer
74 views

.substring() while dealing with multibyte characters in Java on Unix/Linux

I have an encoded string (creation of which i have no information about and possibly cannot alter) which has 8 random characters at the beginning (before encoding and after decoding). And then valid ...
0
votes
0answers
31 views

Multibyte char*, length and array [] operator in C++

I have a char* with possibly multibyte characters. Can I just get the length using _tcsclen or sg. like that and iterate over that many characters in a for loop or perhaps a while loop that goes until ...
2
votes
3answers
84 views

Detect if last character is not multibyte in Lua

First question. What's the easiest way in Lua to determine if the last character in a string is not multibyte. Or what's the easiest way to delete the last character from a string. Here are ...
1
vote
2answers
141 views

Chinese character in source code when UTF-8 settings can't be used [duplicate]

This is the scenario: I can only use the char* data type for the string, not wchar_t * My MS Visual C++ compiler has to be set to MBCS, not UNICODE because the third party source code that I have is ...
2
votes
1answer
101 views

Detecting the right character encoding in PHP?

I'm trying to detect the character encoding of a string but I can't get the right result. For example: $str = "€ ‚ ƒ „ …" ; $str = ...
15
votes
2answers
379 views

Does multibyte character interfere with end-line character within a regex?

With this regex: regex1 = /\z/ the following strings match: "hello" =~ regex1 # => 5 "こんにちは" =~ regex1 # => 5 but with these regexes: regex2 = /#$/?\z/ regex3 = /\n?\z/ they show ...
0
votes
0answers
153 views

DataStage DB2 Runtime Column Propagation with Unicode Data

I'm trying to read some data from DB2 9.7 using DataStage 9.1 using the Runtime Column Propagation (RCP) feature. The general approach is to set the DB2 Connector Stage to generate the query SQL by ...
2
votes
2answers
92 views

Updating PHP CMS Site to fully support unicode / utf8

Some years ago, I built a good custom PHP CMS Site, but I overlooked one important issue: unicode support. This was primarily due to the fact that at the time, the users were English-speaking and that ...
1
vote
1answer
322 views

Printing UTF-8 strings with printf - wide vs. multibyte string literals

In statements like these, where both are entered into the source code with the same encoding (UTF-8) and the locale is set up properly, is there any practical difference between them? printf("ο ...
5
votes
2answers
70 views

Japanese characters in a Yii Captcha widget?

Working on a Japanese forum web app done in Yii. The problem is we are starting to get some english-language spamming since the captcha is in English characters and anyone who can read it can ...
3
votes
1answer
120 views

How does gcc decide the wide character set when calling `mbtowc()`?

According to the gcc manual, the option -fwide-exec-charset specifies the wide character set of wide string and character constants at compile time. But what is the wide character set when converting ...
-1
votes
1answer
152 views

MFC multibyte application shows junk “????” on pasting Chinese characters, but typing works

Our MFC application uses Multi Byte Character Set (MBCS). OS is Windows 7. We could type in Chinese Simplified characters by virtual keyboard, but copy pasting Chinese characters from Google ...
1
vote
1answer
109 views

PHP arabic text compare using strpos

I have a arabic keyword in a mysql table like *#1591; *#1610; *#1585;*#1575;*#1606 // Please consider & in the place of * , value with '&' automatically converts in to arabic. Mysql ...
2
votes
2answers
115 views

How this works: chr(($number >>6 )+192).chr(($number & 63)+128);

Can you please explain how this line of code is equivalent to the next code: <?php $string = chr( ( $number >> 6 ) + 192 ).chr( ( $number & 63 ) + 128 ); ?> Its equivalent to : if ...
2
votes
1answer
31 views

Should all projects in a solution have the same character encoding?

For a big solution containing ten or so projects, should all the projects have the same characterset (unicode)? What are the possible consequences of the projects having different character ...
0
votes
0answers
120 views

mb_ereg_replace code does not work with changed PHP configuration

I'm starting to program in PHP in order to set up a new site of mine. I'm using UTF-8 since it's a site in Mexico. At the beginning of my PHP code I specify the following: ...
0
votes
1answer
234 views

Removing 4-byte UTF characters from a large file

I have a file containing multibyte characters. Since the file is very large and I want to remove the 4-byte utf characters from this file. I need a faster solution to do it. I tried the following java ...
0
votes
2answers
134 views

Javascript how to search double byte string with single byte string and vice versa

I have a string var str = "か22222"; i want to search like this str.indexOf("か2"); where "か2" both are multi byte characters and "str" has only "か" as multibyte but still I should get the result ...
2
votes
1answer
116 views

Can I use the _bstr_t class to convert between multibyte and Unicode on Windows? (C++)

BSTR is this weird Windows data type with a few specific uses, such as COM functions. According to MSDN, it contains a WCHAR string and some other stuff, like a length descriptor. Windows is also ...
-3
votes
6answers
164 views

How to detect and echo the last vowel in a word?

$word = "Acrobat" (or Apple, Tea etc.) How can I detect and echo the last vowel of a given word with php? I tried preg_match function, google'd for hours but couldn't find a proper solution. There ...
0
votes
3answers
106 views

Would I use mb_substr string to do this?

I am looking for a way to delete only those elements in an array that start with a vowel. so adam would be deleted, edward would be deleted and so on and so forth. My friend told me that to do this I ...
4
votes
2answers
116 views

Get rest of the string to the end with mb_substr() and still set encoding

With substr() you can omit the third parameter to get the whole rest of the string: substr('abcdefg', 2) // returns "cdefg" You can't do the same with mb_substr(): mb_substr('abcdefg', 2, null, ...
6
votes
2answers
712 views

PHP mb_substr() not working correctly?

This code print mb_substr('éxxx', 0, 1); prints an empty space :( It is supposed to print the first character, é. This seems to work however: print mb_substr('éxxx', 0, 2); But it's not right, ...
5
votes
2answers
173 views

outputing multibyte string in C++

I have a problem with multibyte char strings. I have simplified my problem as below: std::wstring str = L"multıbyte test string"; std::wofstream f; f.open("F:\\dump.txt"); f << str; f.close(); ...
4
votes
2answers
76 views

Character missing when saving a row?

$userTb = new My_Tb_User(); //Child of Zend_Db_Table_Abstract $row = $userTb->find(9)->current(); $row->name = 'STÖVER'; $row->save(); Inside user table at row 9 for name column value ...
5
votes
4answers
174 views

strip out multi-byte white space from a string PHP

I am trying to use a preg_replace to eliminate the Japanese full-width white space " " from a string input but I end up with a corrupted multi-byte string. I would prefer to preg_replace instead of ...
2
votes
1answer
273 views

How to format numbers with thin space as a thousand separator?

Instead of displaying numbers formatted like this: 1,234,567.890, I want to display numbers formatted like this: 1 234 567.890, which is slightly different from this: 1 234 567.890. I am using the ...
3
votes
1answer
244 views

PHP mb_substr dividing error utf 8

I'm trying to divide a string into two columns with 6 lines in each. The problem is that if the last line contains (Ø,Æ,Å) it will jump into the next column even though there is a space in the first. ...
1
vote
0answers
63 views

substring utf-8 characters with alphanumeric character up to 10 words

I have a problem with getting a substring of this string: GMOクラウドの芦田です。前回、OpenSocialに対応したSNSの「OpenPNE」をインストールしたので、今回はソーシャルアプリを作ってOpenPNE上で公開してみます。また、作ったアプリをmixiアプリとしてmixiにも登録してみましょう。 I just wanted ...
0
votes
0answers
121 views

Behavior of Multi Byte Characters in URL?

I'm doing a task where I want to parse the domain name from a URL. So far, the most reliable way that I found is: function getHost(url) { var anchorTag = document.createElement('a'); ...
0
votes
2answers
39 views

php function to find position of one of the multibyte chars

Is there a standard function in php which can return position of first occurrence of one of the multibyte symbols? In whole the task is as follows. I have multibyte string and position in this ...
0
votes
1answer
229 views

Convert unicode characters above 127 to decimal [duplicate]

Possible Duplicate: How to convert text to unicode code point like \u0054\u0068\u0069\u0073 using php? I'm trying to convert all characters that can't fit into a 7-bit ANSI character into ...
1
vote
1answer
424 views

MultiByteToWideChar / WideCharToMultiByte implementation on Linux for UTF conversion

I am developing the application that uses MultiByteToWideChar() and WideCharToMultiByte() functions to convert UTF-8 to UTF-16 and vice versa. The intention of my work is to port that application from ...
0
votes
0answers
81 views

PHP multibyte string comparison [duplicate]

Possible Duplicate: Comparing strings in PHP the same way MySQL does I am looking for a multibyte replacement of the string comparison operators < and >. I am well aware of the ...
3
votes
2answers
126 views

Why are PHP string functions not multi-byte safe by default?

Why are the PHP multi-byte string functions (the ones which start with mb_) not used by default in PHP?
0
votes
1answer
672 views

How install the mbstring extension in Centos?

I get the following fatal error: Fatal error: Call to undefined function mb_convert_encoding() in /var/www/html/dai/components/com_servicemanager/views/i0602/view.html.php on line 67 I create a ...
0
votes
0answers
134 views

Strip Everything Except Alphanumeric unicode Characters with mb_ereg_replace()

I have PHP 5.2.9 on my apache web server, so preg_replace does not work on it. I need to strip everything except alphanumeric unicode Characters. Below line with mb_ereg_replace works but it does ...
0
votes
0answers
87 views

Accepting single byte special characters into the windows terminal (testing on cygwin)

I am testing a C program in the windows terminal. I mocked up a quick example of the section I am having issues with. The example is as follows: $ cat test.c #include <stdio.h> #include ...
2
votes
3answers
177 views

MySQL WHERE `character` = 'a' is matching a, A, Ã, etc. Why?

I have the following query in MySQL: SELECT id FROM unicode WHERE `character` = 'a' The table unicode contains each unicode character along with an ID (it's integer encoding value). Since the ...
1
vote
0answers
143 views

XOR encode a multibyte string and save to MySQL field without loss

I'm currently using this function to obfuscate a bit the field values in MySQL and protect it from direct dumping. It all works good and values are stored correctly, but what happens when i try to ...
2
votes
2answers
97 views

Modify SQL Server database to support russian data [closed]

I am currently modifying a SQL Server 2008 database to support different data that needs to support multi-byte character sets eg russian. I am converting all varchar columns to nvarchar etc. I am ...
4
votes
1answer
224 views

Multibyte characters in JSON lost when saved to database

I convert my hash to JSON using Rails' .to_json() method. Hash: { "Größe" => "XL" } JSON: "{\"Gr\\u00f6\\u00dfe\":\"XL\"}" After that the JSON string is stored in a hstore (Postgres) column ...
0
votes
0answers
66 views

Removing characters from multibyte strings in php

I made this but only works in latin charsets function str_ink($str){ $arr = str_split ($str); $new=array(); foreach($arr as &$a){ if(ctype_alnum($a)){ ...
1
vote
0answers
85 views

mb_stripos returns incorrect value

I am in the process of converting my work environment from ISO-8859-1 encoding to UTF-8. I have modified the php.ini to accommodate for this change. If I run mb_internal_encoding(), it confirms that ...
0
votes
2answers
2k views

SELECT as much data from CLOB to VARCHAR2 as possible, with multibyte chars in the data

Multi-byte characters had caused me a lot of pain. Any suggestion for this problem? I have a CLOB field that might contains some multi-byte characters, and I need to select in SQL and convert this ...
2
votes
3answers
202 views

Detect if string contains atleast 2 letters (form any language) and atleast 2 words

I would like to make function which detects/validates that a string got atleast 2 words, and each word has atleast 2 letters (except for the two letters, it can contain any other char {without ...
0
votes
2answers
63 views

How to assign a variable the first 3 lines of a multibyte string

I'm trying to take a multibyte string of Greek characters and trim it down to just 3 lines. My approach has been to split the multibyte string into a character array and then loop through it and try ...
0
votes
1answer
384 views

PHP multibyte string concat and comparison?

Win7-HUN, UTF8 PHP file. function Test($Msg){ $Result = ""; $ReplFrom = "ő"; $ReplTo = "ö"; for($i=0; $i<mb_strlen($Msg); $i++){ $c = mb_substr($Msg, $i, 1); echo($c);echo("<br>"); ...

1 2 3 4