Jump to content
  • 0

inches omzetten naar cm


Bruno VDK

Question

Posted

Hi all,

 

ik moet inches omzetten naar cm, dat is op zich geen probleem, is enkel een basis vermenigvuldiging.

 

Echter, de ingave voor inches kan ook bv 2 3/8" zijn....

 

Enkel 3/8, daar slaag ik wel in.

Wanneer het 2 3/8 is loop ik tegen een muur....

 

Iemand een oplossing ?

6 answers to this question

Recommended Posts

  • 0
Posted

Leuk. Schiet je hier iets mee op:

 

Let ( [
 mySchoneInvoer = Filter ( Invoer; "1234567890/ " ) ;
 myInteger = GetAsNumber ( LeftWords ( mySchoneInvoer ; 1 ) ) ;
 myModTxt = MiddleWords ( mySchoneInvoer ; 2 ; 10^10 ) ;
 myMod = Evalueren ( myModTxt ) ] ;

 myInteger + myMod
)

  • 0
Posted

Da's een leuke vereenvoudiging, doch de " en andere vervuiling moet er wel uit:

 

Let ( [
 mySchoneInvoer = Filter ( Invoer; "1234567890/ " ) ;
 myBerekening = Substitute ( mySchoneInvoer ; " " ; "+" ) ;
 myUitkomst = Evalueren ( myBerekening ) ] ;

 myUitkomst
)

 

Foutafvanging bovendien achterwege gebleven.

 

René

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...