Separate characters in a string

  • Thread starter Thread starter viadisky
  • Start date Start date
V

viadisky

Hi,

I would like to convert this string ---> FastEthernet0/1/0 t
FastEthernet 0 1 0

Can anybody suggest a formula to do this?

Any help will be appreciated :
 
We'll try the easiest first...if it is always going to be FastEthernet0/1/0
replaced with FastEthernet 0 1 0 then I would simply hit Cntrl H
(Find/Replace) and type the two variables in.

If this was just an example and the variables will change then I'd have to
think about it...
 
viadisky said:
Hi,

I would like to convert this string ---> FastEthernet0/1/0 t
FastEthernet 0 1 0

Can anybody suggest a formula to do this?

Any help will be appreciated :)

=LEFT(A1,12)&\" \"&MID(A1,13,1)&\" \"&MID(A1,15,1)&\" \"&RIGHT(A1,1

where A1 contains "FastEthernet0/1/0"

PERSONAL NOTE: I believe it is easier and faster to manually write/typ


"FastEthernet 0 1 0"

than go through making out a formula.

Regards
 

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