search for: u00f6

Displaying 7 results from an estimated 7 matches for "u00f6".

Did you mean: 00f6
2013 Apr 11
2
(no subject)
Dear all, Is there a quick and easy way of converting utf characters to the \uxxxx form (necessary e.g. for packages)? I mean something working like this: > utf2uxxxx("õäöü") [1] "\u00f5\u00e4\u00f6\u00fc" It is easy to program but perhaps someone already has implemented this. (I couldn't find anything useful from searches incl RSiteSearch). Thanks in advance, Kenn -- P.S. Apologies if this is double posted - there was a network error and the first message doesn't seem to hav...
2014 Jan 15
0
[PATCH 2/4] hivex: python: Fix encoding for "special" test script
...return x import os import hivex @@ -13,16 +22,20 @@ assert h root = h.root () assert root -ns = [ n for n in h.node_children (root) if h.node_name(n) == u"abcd_äöüß" ] +# "abcd_äöüß" +ns = [ n for n in h.node_children (root) if h.node_name(n) == u("abcd_\u00e4\u00f6\u00fc\u00df") ] assert len (ns) == 1 -vs = [ v for v in h.node_values (ns[0]) if h.value_key(v) == u"abcd_äöüß" ] +# "abcd_äöüß" +vs = [ v for v in h.node_values (ns[0]) if h.value_key(v) == u("abcd_\u00e4\u00f6\u00fc\u00df") ] assert len (vs) == 1 -ns = [ n for...
2018 Dec 08
2
Possible encoding bug in sub()
...to the native Encoding in Windows. I think the best result would be UTF-8 output marked as such. foo <- c("a", "b") foo <- sub("a", "\u00e4", foo) print(Encoding(foo)) ## [1] "unknown" "unknown" foo <- sub("b", "\u00f6", foo) print(Encoding(foo)) ## [1] "unknown" "unknown" # Windows ## [1] "unknown" "UTF-8" # Linux print(foo) ## [1] "??" "?" # Windows ## [1] "?" "?" # Linux The output of sessionInfo() fo...
2014 Jan 15
4
[PATCH 1/4] hivex: Python 2.6 does not have sysconfig.
--- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 6785037..203f34f 100644 --- a/configure.ac +++ b/configure.ac @@ -329,8 +329,8 @@ AS_IF([test "x$enable_python" != "xno"], AC_MSG_CHECKING([for Python extension suffix (PEP-3149)]) if test -z "$PYTHON_EXT_SUFFIX"; then
2018 Dec 10
0
Possible encoding bug in sub()
...the best result would be UTF-8 output marked as such. > foo <- c("a", "b") > foo <- sub("a", "\u00e4", foo) > print(Encoding(foo)) > ## [1] "unknown" "unknown" > foo <- sub("b", "\u00f6", foo) > print(Encoding(foo)) > ## [1] "unknown" "unknown" # Windows > ## [1] "unknown" "UTF-8" # Linux > print(foo) > ## [1] "??" "?" # Windows > ## [1] "?" "?&quo...
2005 Dec 02
43
ANN: acts_as_ferret
Hi all This week I have worked with Rails and Ferret to test Ferrets (and Lucenes) capabilities. I decided to make a mixin for ActiveRecord as it seemed the simplest possible solution and I ended up making this into a plugin. For more info on Ferret see: http://ferret.davebalmain.com/trac/ The plugin is functional but could easily be refined. Anyway I want to share it with you. Regard it as a
2005 Dec 02
43
ANN: acts_as_ferret
Hi all This week I have worked with Rails and Ferret to test Ferrets (and Lucenes) capabilities. I decided to make a mixin for ActiveRecord as it seemed the simplest possible solution and I ended up making this into a plugin. For more info on Ferret see: http://ferret.davebalmain.com/trac/ The plugin is functional but could easily be refined. Anyway I want to share it with you. Regard it as a