由买买提看人间百态

topics

全部话题 - 话题: characters
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
C********g
发帖数: 1548
1
【 以下文字转载自 Programming 讨论区 】
发信人: ChuangWang (太短), 信区: Programming
标 题: 求Optical Character Recognition入门教程
发信站: BBS 未名空间站 (Fri Apr 3 12:44:17 2015, 美东)
能帮忙推荐一些基本的面向程序员的入门教程吗?什么形式的都可以。
z*h
发帖数: 22
2
来自主题: Database版 - [转载] problem with chinese character
【 以下文字转载自 BuildingWeb 讨论区 】
【 原文由 zwh 所发表 】
hi, guys, I have a database with chinese contents.
but the character can't be displayed correctly in browser
when retreived from web server (IIS). anyone knows how
to fix the problem? thanks a lot. the db is MS access.
a*******t
发帖数: 41
3
来自主题: Database版 - delete characters between parentheses?
Hi,
I can do this in sql server -
select * where cln1 like '%(%)%'
however, if I want to delete the characters between parentheses, I can't use
replace( cln1, '(%)','').
Anyone knows how to do it?
Thanks a lot!
a*******t
发帖数: 41
4
来自主题: Database版 - delete characters between parentheses?
Thanks for your response.
Exactly, the wildcard character doesn't work for replace in sql server 2005.
What is the logic in oracle 10g+ for this please?
l****a
发帖数: 336
5
我现在有一份文件, 含有德国字母, 比如a 上边加2个点. 我用insert语句加入数据库
的时候, 可以正常显示为 a 上边加2个点. 但是用ctl load数据, 该字母居然显示为"?
".
database的这个column 设定是 varchar2(100).
试过改成 varchar2 (100 char), 不灵.
数据库本身不能改变character set, 公司不让.
向高手们求助, 该咋办?
l****a
发帖数: 336
6
我现在有一份文件, 含有德国字母, 比如a 上边加2个点. 我用insert语句加入数据库
的时候, 可以正常显示为 a 上边加2个点. 但是用ctl load数据, 该字母居然显示为"?
".
database的这个column 设定是 varchar2(100).
试过改成 varchar2 (100 char), 不灵.
数据库本身不能改变character set, 公司不让.
向高手们求助, 该咋办?
l****a
发帖数: 336
7
我现在有一份文件, 含有德国字母, 比如a 上边加2个点. 我用insert语句加入数据库
的时候, 可以正常显示为 a 上边加2个点. 但是用ctl load数据, 该字母居然显示为"?
".
database的这个column 设定是 varchar2(100).
试过改成 varchar2 (100 char), 不灵.
数据库本身不能改变character set, 公司不让.
向高手们求助, 该咋办?
l****a
发帖数: 336
8
现在有一份文件, 含有德国字母, 比如a 上边加2个点. 我用insert语句加入数据库的
时候, 可以正常显示为 a 上边加2个点. 但是用.ctl file load数据, 该字母居然显示
为"?".
database里这个column 设定是 varchar2(100).
试过改成 varchar2 (100 char), 不灵.
数据库本身不能改变character set, 公司不让.
向高手们求助, 该咋办?
l****a
发帖数: 336
9
我现在有一份文件, 含有德国字母, 比如a 上边加2个点. 我用insert语句加入数据库
的时候, 可以正常显示为 a 上边加2个点. 但是用ctl load数据, 该字母居然显示为"?
".
database的这个column 设定是 varchar2(100).
试过改成 varchar2 (100 char), 不灵.
数据库本身不能改变character set, 公司不让.
向高手们求助, 该咋办?
s*******1
发帖数: 40
10
我现在有一份文件, 含有德国字母, 比如a 上边加2个点. 我用insert语句加入数据库
的时候, 可以正常显示为 a 上边加2个点. 但是用ctl load数据, 该字母居然显示为"?
".
database的这个column 设定是 varchar2(100).
试过改成 varchar2 (100 char), 不灵.
数据库本身不能改变character set, 公司不让.
向高手们求助, 该咋办?
i****a
发帖数: 36252
11
来自主题: Database版 - remove special character
what about, instead of removing this one special character, try removing
anything that's not in the printable ASCII range?

such
several
,
b****u
发帖数: 1654
12
I was told that Chinese characters can be displayed in Oracle SQL*Plus. Is
this true? If yes, what kind of environment variable should be set up for
that to work? For both Windows and Linux platform
h**2
发帖数: 2841
13
【 以下文字转载自 Joke 讨论区 】
发信人: imagecube (image cube), 信区: Joke
标 题: See, Chinese Characters Aren't Hard To Understand
发信站: BBS 未名空间站 (Thu May 7 14:22:07 2009)
象形文字
i******m
发帖数: 70
14
This has been a problem for me forever and I still could not find a solution
to it :( Pls help--how do you guys make sure the Chinese characters are
maintained after exporting your favorites?
o*****l
发帖数: 539
15
来自主题: Java版 - xslt: how to replace character
I have a xml document, and want to replace all occurance of character '*'
with space.
Is there a simple way in xslt to do that? Thanks!
O******e
发帖数: 734
16
$ cat -T test.dat
abc^Ixyz
$ sed -e 's/\t/TAB/' test.dat
abcTABxyz
$ sed -e 's/\\t/TAB/' test.dat
abc xyz
$ sed -e 's/ /TAB/' test.dat (Ctrl-I used in the regexpr)
abcTABxyz
$ sed -e "s/\t/TAB/" test.dat
abcTABxyz
$ sed -e "s/\\t/TAB/" test.dat
abcTABxyz
$ sed -e "s/ /TAB/" test.dat (Ctrl-I used in the regexpr)
abcTABxyz
In the above examples I can type the TAB character in the shell
either using Ctrl-V followed by TAB or Ctrl-V followed by Ctrl-I.
r******r
发帖数: 74
17
special capital Greek characters
like $\mathcal{\Lambda}$, or some other types?
r*****k
发帖数: 1281
18
log file里面有: Missing character: There is no – in font cmr8!
这是啥问题啊?请教各位。
我用的是WIN7 ctex 2.8.0.125
thanks!
e***o
发帖数: 14
19
来自主题: Unix版 - [转载] Hidden character in a file

no ( unless you hit the enter key
at least not in vi and emacs
EOF (end of file) is not a character.
So if you only type a in a new file, the there is only an a in this
file and nothing else.
b**l
发帖数: 7
20
I have a lot of files with unwanted character in the names, like
"a.1_2_3.01:02:03". I want to get rid of these ".","_" and ":" in all these
files. Can anybody help me with a script command?
3X.
i**p
发帖数: 902
21
来自主题: Unix版 - Chinese Character
Hi,
I got a email in UNIX system. There is a Chinese Character #65292.
Do you know how to convert it back to Chinese Word?
Thanks!
w*****s
发帖数: 122
22
How do I know what character sets the XML software supports?
The "Chinese XML Now!" project at Academia Sinica, Taipei,
has some information. Also, some manufacturers may use the
Chinese Numberplate logo. In any case, you can always convert
your XML document into UTF-8 and use any XML software.
o*****l
发帖数: 539
23
来自主题: XML版 - xslt: how to replace character
I have a xml document, and want to replace all occurance of character '*'
with space.
Is there a simple way in xslt to do that? Thanks!
B*****i
发帖数: 1246
24
TX CPA application of Intent 里面official certificate of good moral
character 是什么东西?请问怎么弄?谢谢
K******G
发帖数: 723
25
请问宾州的考生怎么找的 Moral Character Reference
要求3个references, 1个要是CPA。3人都是PA 居民,并且认识超过3年。我2年前才来
PA, 第一:没有认识的CPA, 第二: 认识的非-CPA 都是2年。 我们公司的美国人死活
不肯写和我认识3年,愿意做reference, 但是要写清2年。怎么办啊。不能因为这个不
能报考吧。
f**********8
发帖数: 37
26
现在还需要拿3门课就可以考CPA, 现在准备花50美金让他们审核一下我的成绩,是否符
合。等我3们学分成绩出来后,还需要从新申请么? 填什么表格,还要交钱么,还是补
给他们我却的成绩单就好了。
另外,如何拿到 offical certificate of good moral character? I am in texas
now.
Thanks a lot
j***r
发帖数: 741
27
来自主题: Accounting版 - good moral character certificate
德州CPA的"Applicationof Intent"里要求提供"Officialcertificate of good moral
character".这是个什么东东。要到哪里开这个证明阿?
不胜感谢!
n******g
发帖数: 6
28
Hello,
I'm borrowing my friend's ID to post this question.
This is about application for determination of moral character for bar
examination. On the application form, it requires a Certificate of Good
Standing be submitted for each jurisdiction into which the applicant has been
admitted to practice law. I passed Chinese bar many years ago. If you have
similar experience when you applied the bar, could you please let me know how
and where to get such a document?
Thanks a lot.
t**i
发帖数: 688
29
来自主题: Statistics版 - 请教在R里面如何拆character string.
BTW, It should be as.character("a b\nc d"). The code as you put does not
work.
t**i
发帖数: 688
30
来自主题: Statistics版 - 请教在R里面如何拆character string.
If you look closely, you should notice that I used regex for the splitter.
That is, either space or \n will be recognized. I tried the following and
it worked. Please do copy and paste to make sure you do not miss the
invisible space character.
> x="a b\nc d"
> strsplit(x,"[ \n]")
[[1]]
[1] "a" "b" "c" "d"
i****d
发帖数: 3
31
有数千个character variables,(snp data),其中有部分balnk ,no genotype
data
请教有什么好办法把那些 blank read as missing value
谢了
g*********n
发帖数: 441
32
A lot of conditions which includes characters and numeric valuable should
put into where sentence, however, there always shows "WHERE clause operator
requires compatible variables". Is there other ways to code this? Thanks a
lot!
p********a
发帖数: 5352
33
use character. Or create 2 vars
g*********n
发帖数: 441
34
it will not effect a lot, just combine the character and numeric together
will fine. thanks!
D******n
发帖数: 2836
35
any easy proc to get the number of missing values of all the character
variables in a data set?
b******e
发帖数: 539
36
that's right -- i only used on numeric values and thought it would be the
same for character values :(
b******e
发帖数: 539
37
then you can use a data step -- you need to know how many character
variables you have and their sequence in advance, which should be easy.
then:
assume you have 100 char variables:
data one (keep=count1-count100);
set xxx end=last;
retain count1-count100;
array char(*) _character_;
array count(100);
do i = 1 to dim(char);
count(i) = count(i) + missing(char(i));
end;
if last then output;
run;
B***h
发帖数: 264
38
想用简单的方法,我用过first做numeric变量,
但是似乎没有说可以做character的。
var acct target
aaa 1234 dog
aaa 1266 cat
bbb 2234 rat
就是想看同样的var,不同的acct,有什么样的target组合。
我的想法是,
data one;
set sample;
by var acct;
retain A;
format A $10.; informat A $10.;
if first.var then A=target;
else A=A||target;
run;
我想出来的是,
var A
aaa dogcat
aaa dogcat
bbb rat
但是结果是
var A
aaa dog
aaa dog (cat没有加上去)
bbb rat
因为不是macro,所以我理解之前的record没法记录后来的
record的值,可是如果last的那个record记录了之前的
字符串,那也成了,可是这里它只记录first的字符串。。。
哪位高手指点一下?
多谢哈!
p********2
发帖数: 9939
39
我想把一个character variable里面的所有空格,逗号,括号都去掉,该用什么
function呢?谢谢。
再则,我要去掉一个一个特定的substring,又该怎么办呢。谢谢。
p********2
发帖数: 9939
40
我找到一个compress function可以去掉单个character,有没有去掉一个string的?
a****g
发帖数: 8131
41
WARNING: Data too long for column;truncated to 92 characters to fit
如何使SAS不truncate,而是print整个column?
谢谢
m*******g
发帖数: 3044
42
来自主题: Statistics版 - how to convert a character into numberic
my code:
data sasuser.aggep_f1;
set sasuser.aggep_f;
Num_AY=input(AY,4.);
run;
AY=accident year(2007,2008, 2009,2010 ...), but is is character in my sas, I
want to change to numberic.
is my code correct?
m*******g
发帖数: 3044
43
来自主题: Statistics版 - how to convert a character into numberic
可我RUN完后,重新打开这个表,AY那一列显示的还是CHARACTER
p***r
发帖数: 920
44
I can do that way, but what if there is 100 formulas, just curious how to
output as neither character nor numeric value but as string executable.
t******m
发帖数: 58
45
想请问sas高人,我现在如果有一组数据里有个性别变量是character string,比如
Gender
M
F
M
M
F
我现在想根据这组数据创造另一个变量sex,形式是numeric的,比如
Sex
1
2
1
1
2
请问coding该怎么弄,谢谢
s******r
发帖数: 27
46
本人刚毕业,小广告公司有数据,但是都是categorical data ,例如city,publisher
,network 之类 。比如city有5千多种,另外也有一些variable也有有数千种的level.
这些variable都很重要,我要怎么根据这些variable做Classification。普通的logit
好像不可以把?你们说SVM, decision tree ,k-means clustering可以吗?我以前没
学过这些 .这组数据里完全没有continue ariable,全是Character Variables.这样的
数据应该怎么做啊。有人做过能介绍下具体流程。谢谢哦。
f*******n
发帖数: 2665
47
来自主题: Statistics版 - logistic regression 中的character variable
sas的proc logistic也有处理character variable的选项,但我觉得把它转换成
numeric更方便,除了用dummy 或WOE, 还有别的方法吗?
k*******a
发帖数: 772
48
来自主题: Statistics版 - Help -- R code for character field processing
读第二个单词
title <- function(x) scan(textConnection(x), what=character(), n=2, quiet=T
)[2]
sapply(name, title, USE.NAMES=F)
n*e
发帖数: 34
49
来自主题: CivilSociety版 - 给Chrysler的信 (256 characters)
Sent through: http://www.dodge.com/webselfservice/dodge/emailpage.html
It has 256 character limits and the subject also can’t be long. I can’t
find a better contact.
Subject: Please stop advertising during Jimmy Kimmel’show
On 10/16/2013, ABC’s "Jimmy Kimmel Live" aired a sketch in which a child
suggested “kill everyone in China”. Asian American communities are deeply
offended and have pledged to stop patronizing companies advertising during
the show. We need Chrysler's help.
w*******y
发帖数: 60932
50
You can get a free Disney Enchanted call where a Disney character will call
a loved one with a message (it's normally $2.50). To get your code login to
your Disney Movie Rewards account (www.disneymo vierewards.c om:
http://www.disneymovierewards.com
) and in the 'enter magic code' box type ENCHANTEDCAL L. It'll return a
code that you then plug in to the www.disneyen chantedcalls .com:
http://www.disneyenchantedcalls.com
site and will step you through creating the greeting.
Make a little ki... 阅读全帖
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)