Sunday, July 6th 2008, 2:43pm UTC+1

You are not logged in.

  • Login
  • Register

1

Wednesday, January 9th 2008, 1:56am

change the positions of characters with in a string

Hi

I want to change the positions of characters in a string.
Ex: QString x = "341256";
I want to Change the x string from "341256" to "123456";

How can I change the character positions within a string.

Thanks & Regards,
Arun.
  • Go to the top of the page

stinos

Intermediate

2

Wednesday, January 9th 2008, 9:33am

you can use something like x[ 0 ] = x[ 1 ]
madinsjamania
  • Go to the top of the page

Rate this thread