Re: System.WCh_Cnv
On Tue, 2006-07-25 at 14:03 +0100, Marius Amado-Alves wrote:
for I in Str'Range loop
if Str (I) = Euro_Sign then ...
end loop;
As you implied elsewhere
while Has_Element(Str) loop
if Element(Str) = Euro_Sign then ...
end loop;
UTF-anything is an external form for transmission of characters.
So yes, perhaps internal Wide_Wide_Character will be well suited.
When I tried Containers.Vectors in place of Unbounded_String,
the container performance was very good.
.
Relevant Pages
- Re: displaying large amount of text in a swing textcomponent
... If the next iteration of the while loop happens before the event loop ... and the str contents is lost and never added to the text area. ... - The JTextArea widget ... - The slider at the scroll pane ... (comp.lang.java.gui) - Re: Is there any library for converting common English words to its equivalent numeric value in digi
... 4/ It contains a long loop with two sub-loops. ... (defun normalize (str) ... (defun number->words (n) ... "A hash that maps english numbers below 1000 to their numerical values.") ... (comp.lang.lisp) - Re: loop...
... the above loop order was chosen for efficiency. ... When it finds a zero, ... This process needs to loop until all the 'str' binary digits ... (comp.soft-sys.matlab) - Re: Loop removal or optimization
... to stop the screen from updating while the macro is running. ... Application.ScreenUpdating = False before your loop and make sure to ... string for every row from the first to last row. ... the value of the (intField) column is not equal to Str then the row is ... (microsoft.public.excel.programming) - Re: for loop problems in setTextmethod of JeditorPane
... what is str and why are you making your final loop condition the size of ... so basically i am storing the URL in Arraylist and just loop through ... I actually don't see the point in having 2 different data structures storing the same information. ... Why not just use urlin your loop header since you use it in the loop body? ... (comp.lang.java.gui) |
|