E
ECCO
SITUATION:
I have a string with the following pattern:
" [#######] XXXXX | XXXXXXXXXXXX | XXXXXXXXX "
Where # is a number, six characters in length always and X is text of
variable length.
EXAMPLES
#1) " [384922] Shade Stick | Maxwell House | Fine "
#2) " [999201] It something that is green | Re | Do So Me "
OBJECTIVE
I need to separate these sections and assign them to labels (Using
Example #1 from Above):
Label1.text = "384922"
Label2.text = "Shade Stick"
Label3.text = "Maxwell House"
Label4.text = "Fine"
I have a string with the following pattern:
" [#######] XXXXX | XXXXXXXXXXXX | XXXXXXXXX "
Where # is a number, six characters in length always and X is text of
variable length.
EXAMPLES
#1) " [384922] Shade Stick | Maxwell House | Fine "
#2) " [999201] It something that is green | Re | Do So Me "
OBJECTIVE
I need to separate these sections and assign them to labels (Using
Example #1 from Above):
Label1.text = "384922"
Label2.text = "Shade Stick"
Label3.text = "Maxwell House"
Label4.text = "Fine"