Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
REVERSE RGB(0,0,0,255,255,255) to RGB(255,255,255,0,0,0)
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00799797
Message ID:
00799868
Vues:
34
Am I missing something George?
clear
lcstring = "RGB(123,124, 125, 126, 127, 128)"
? lcstring
oRE = CREATEOBJECT("VBScript.RegExp")
oRE.Pattern = "(\d+)\, (\d+)\, (\d+)\, (\d+)\, (\d+)\, (\d+)"
? oRE.Replace(lcstring, "$4, $5, $6, $1, $2, $3")
OOPS, never mind, I just figured out that spaces matter. The below works:
clear
lcstring = "RGB(123, 124, 125, 126, 127, 128)"
? lcstring
oRE = CREATEOBJECT("VBScript.RegExp")
oRE.Pattern = "(\d+)\, (\d+)\, (\d+)\, (\d+)\, (\d+)\, (\d+)"
? oRE.Replace(lcstring, "$4, $5, $6, $1, $2, $3")
>Whoops! Just read Steve's post...Make that
lcstring = "RGB(0, 0, 0, 255, 255, 255)"
>oRE = CREATEOBJECT("VBScript.RegExp")
>oRE.Pattern = "(\d+)\, (\d+)\, (\d+)\, (\d+)\, (\d+)\, (\d+)"
>? oRE.Replace(lcstring, "$4, $5, $6, $1, $2, $3")
.·*´¨)
.·`TCH
(..·*

010000110101001101101000011000010111001001110000010011110111001001000010011101010111001101110100
"When the debate is lost, slander becomes the tool of the loser." - Socrates
Vita contingit, Vive cum eo. (Life Happens, Live With it.)
"Life is not measured by the number of breaths we take, but by the moments that take our breath away." -- author unknown
"De omnibus dubitandum"
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform