Content of each line and alphabets
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Content of each line and alphabets
Hi,
I made a loop which has many lines that contain text. I need the content of each line and that line must have alphabets (a),(b)... corresponding to each line. when line count exceeds 26 then alphabet count should be aa, ab,.... Is it possible
Thanks
Shalu S
I made a loop which has many lines that contain text. I need the content of each line and that line must have alphabets (a),(b)... corresponding to each line. when line count exceeds 26 then alphabet count should be aa, ab,.... Is it possible
Thanks
Shalu S
--
Thanks
Shalu S
Thanks
Shalu S
-
- Livecode Opensource Backer
- Posts: 10078
- Joined: Fri Feb 19, 2010 10:17 am
Re: Content of each line and alphabets
Here is "something".
Nothing more than a bit of logic!
Nothing more than a bit of logic!
- Attachments
-
- Lister.livecode.zip
- Here's the stack.
- (921 Bytes) Downloaded 215 times
-
- Posts: 115
- Joined: Thu Mar 06, 2014 9:29 am
Re: Content of each line and alphabets
I don't know how exact you have to be... but is a built-in function that's very close to what you're after
On that note,
I looked at the liststyle lower latin behaviour in LC7... and it goes through
a
b
c
...
x
y
az
aa
ab
I'm thinking the jump to "az" following "y" is a bug. Obviously this should be "z." Can anyone confirm the same behaviour?
Code: Select all
set the liststyle of line 1 to -1 of fld "[your field]" to "lower latin"
On that note,
I looked at the liststyle lower latin behaviour in LC7... and it goes through
a
b
c
...
x
y
az
aa
ab
I'm thinking the jump to "az" following "y" is a bug. Obviously this should be "z." Can anyone confirm the same behaviour?
Re: Content of each line and alphabets
Hi.
This behavior occurs forever: for example, after "yyyy" is "azzzz".
Bug or feature?
Craig Newman
This behavior occurs forever: for example, after "yyyy" is "azzzz".
Bug or feature?
Craig Newman
-
- Livecode Opensource Backer
- Posts: 10078
- Joined: Fri Feb 19, 2010 10:17 am
Re: Content of each line and alphabets
Hence my stack posted above.This behavior occurs forever: for example, after "yyyy" is "azzzz".
-
- Posts: 115
- Joined: Thu Mar 06, 2014 9:29 am
Re: Content of each line and alphabets
Is that for easily marking list depth then?