I
Ike
Can anyone please tell me why the following:
String rxsl="1}{2}{3}{4}{5}{6}{7}{9}{10}{12}{13}{14}{15}{17";
String rsxla[] = rxsl.split("^.*\\}\\{.*$");
produces rxsla[0]="1}{2}{3}{4}{5}{6}{7}{9}{10}{12}{13}{14}{15}{17";
???
and not
rxsla[0]="1";
rxsla[1]="2";
....
rxsla[13]="17";
clearly I have something (simple and stupid) wrong -- but for the life of
me, cannot find it here. Thanks, Ike
String rxsl="1}{2}{3}{4}{5}{6}{7}{9}{10}{12}{13}{14}{15}{17";
String rsxla[] = rxsl.split("^.*\\}\\{.*$");
produces rxsla[0]="1}{2}{3}{4}{5}{6}{7}{9}{10}{12}{13}{14}{15}{17";
???
and not
rxsla[0]="1";
rxsla[1]="2";
....
rxsla[13]="17";
clearly I have something (simple and stupid) wrong -- but for the life of
me, cannot find it here. Thanks, Ike