_Title "Collapse String Function - Rosetta Code" 'b+ 2021-07-28 ' ref: http://rosettacode.org/wiki/Determine_if_a_string_is_collapsible
t$(1) = "" ' a null string (length zero)
t$
(2) = Chr$(34) + "If I were two-faced, would I be wearing this one?" + Chr$(34) + " --- Abraham Lincoln "t$(3) = "..1111111111111111111111111111111111111111111111111111111111111117777888"
t$(4) = "I never give 'em hell, I just tell the truth, and they think it's hell. "
t$(5) = " --- Harry S Truman "
t$(6) = "A"
t$(7) = "AA"
t$(8) = " AA"
Print collapse$
(t$
(i
));
Len(collapse$
(t$
(i
)))
'If Len(s$) < 2 Then collapse$ = s$ ' : Exit Function
collapse$ = c$
If Mid$(s$
, i
, 1) <> c$
Then c$
= Mid$(s$
, i
, 1): collapse$
= collapse$
+ c$
'Function collapse$ (s$) ' euklides
' collapse$ = Left$(s$ + Chr$(1), 1)
' For x = 2 To Len(s$)
' If Mid$(s$, x, 1) <> Mid$(s$, x - 1, 1) Then collapse$ = collapse$ + Mid$(s$, x, 1)
' Next x
' If collapse$ = Chr$(1) Then collapse$ = ""
'End Function
'Ashish attempt to do collapse$ function
'Function collapse$ (s$)
' If Len(s$) = 0 Then Exit Function Else a0 = Asc(Mid$(s$, 1, 1))
' collapse$ = Chr$(a0)
' For i = 2 To Len(s$)
' If Asc(Mid$(s$, i, 1)) Xor a0 Then a0 = Asc(Mid$(s$, i, 1))
' collapse$ = collapse$ + Chr$(a0)
' Next
'End Function