unicode and ANSI string manipulation 
Author Message
 unicode and ANSI string manipulation

I have to insert a "<BR>"  in a string to tailor its length for displaying.
For ANSI string, it was successful.
But for unicode, it was not. When i insert a <BR> in the string, it become
?BR> and displaying on the screen,
instead of a new line.
any solution?


Sat, 25 Jan 2003 03:00:00 GMT  
 unicode and ANSI string manipulation
I mean if it is possible, i want to acheive both unicode and ANSI in one
function.
Thanx
Amy ???g??31 ...
Quote:
>I have to insert a "<BR>"  in a string to tailor its length for displaying.
>For ANSI string, it was successful.
>But for unicode, it was not. When i insert a <BR> in the string, it become
>?BR> and displaying on the screen,
>instead of a new line.
>any solution?



Sat, 25 Jan 2003 03:00:00 GMT  
 unicode and ANSI string manipulation

Post some example code on how you're doing this now...

--
Michael Harris
MVP Scripting

I have to insert a "<BR>"  in a string to tailor its length for displaying.
For ANSI string, it was successful.
But for unicode, it was not. When i insert a <BR> in the string, it become
?BR> and displaying on the screen,
instead of a new line.
any solution?



Sat, 25 Jan 2003 03:00:00 GMT  
 unicode and ANSI string manipulation
The following is my code:

'This function insert a return tag after a number of delimiter
'The delimiter is usually a space character
'tag: "<BR>"
'delimiter: " "
'l: length of text line defined(e.g 140 each line)
Function insertTag(str, tag, delimiter, l)
strToPut = ""
While (Len(str) > l)
head = Left(str, l)
pos = InStrRev(head, " ")
if (pos = 0) then
pos = l + 1
End if
text = Left(head, pos-1)
strToPut = strToPut & text & tag
str = Right(str, Len(str) - pos)
WEnd
strToPut = strToPut & str
insertTag = strToPut
End Function



Quote:

> Post some example code on how you're doing this now...

> --
> Michael Harris
> MVP Scripting




Quote:
> I have to insert a "<BR>"  in a string to tailor its length for
displaying.
> For ANSI string, it was successful.
> But for unicode, it was not. When i insert a <BR> in the string, it become
> ?BR> and displaying on the screen,
> instead of a new line.
> any solution?



Sun, 26 Jan 2003 03:00:00 GMT  
 unicode and ANSI string manipulation
I extract a string from Access database and display it on a cell.
I have to insert a "<BR>"  in a string to tailor its length for displaying.
For ANSI string, it was successful.
But for unicode, it was not. When i insert a <BR> in the string, it become
?BR> and displaying on the screen, instead of a new line.
any solution?

The following is the code:
'This function insert a return tag after a number of delimiter
'The delimiter is usually a space character
'tag: "<BR>"
'delimiter: " "
'l: length of text line defined(e.g 140 each line)
Function insertTag(str, tag, delimiter, l)
strToPut = ""
While (Len(str) > l)
head = Left(str, l)
pos = InStrRev(head, " ")
if (pos = 0) then
pos = l + 1
End if
text = Left(head, pos-1)
strToPut = strToPut & text & tag
str = Right(str, Len(str) - pos)
WEnd
strToPut = strToPut & str
insertTag = strToPut
End Function

someone suggest me to use the replace function:
memofield = rs("memofield")
memofield = replace(memofield,vbCrLf,"?<br>")

What is vbCrLf? and where can i find the reference for this kind of special
character?
do the replace function work with unicode characters?

thank u very much. Sorry for cross-post, but for some newsgroup, many people
post question and buried mine.
By the way, I need some reference for Access 2000. any good note/web site
suggest?



Sun, 26 Jan 2003 03:00:00 GMT  
 
 [ 5 post ] 

 Relevant Pages 

1. unicode and ANSI string manipulation repost

2. HOW TO: Convert string between UNICODE and ANSI

3. Unicode string to unicode coded string?

4. Convert UNICODE into ANSI

5. Convert ansi into unicode

6. Convert ANSI into Unicode

7. Convert UNICODE to ANSI

8. Ansi to and from Unicode

9. ANSI to Unicode

10. Unicode to ANSI Conversion

11. lost in the unicode, ansi, dos space

12. Help-Unicode to Ansi

 

 
Powered by phpBB® Forum Software