Convert

  • Thread starter Thread starter Peter Osawa
  • Start date Start date
P

Peter Osawa

Hi, I want to parse a string char by char... This is the I do it with VB

For i=1 To Len(strCadena)
strResultado = Replace(strResultado,Mid(strCadena),1)
Next i

TIA
 
Hi,

This converted is:

for( int i=0; i< strCadena.Length; i++
char c = strCadena;

Cheers,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top