#String.append, String.prepend, String.whatever else

1 messages · Page 2 of 1

thorny hedge
#

feel free to change the colors though if you think a different color scheme feels more appropriate

vague relic
#

some new string.appends lol

zealous yacht
#

ok

#

i revamped the sheet a little bit

upper vine
vague relic
#

cuz only lowercase is important

zealous yacht
#

ok

reef pike
#

May be useful idk

vague relic
zealous yacht
#

yeah

zealous yacht
#

@vague relic ill work on 'b_'

vague relic
#

also i got fa

zealous yacht
#

ok

vague relic
#

at is annoying lol

#

posting them here since there isnt a row for them in the sheet yet

strong jetty
#

w lol

zealous yacht
#

gonna make them

vague relic
zealous yacht
upper vine
#

i dont know if this is a simpler ba but i thought id post anyway

upper vine
#

i can help write out some of the 2 letter page if someone wants to give me edit access

zealous yacht
#

ill do it

#

dm your email

vague relic
#

tpyed out String.append('f_')

zealous yacht
#

killerbrowser done

#

reply me the message i told you to

strong jetty
#

should we focus on more 1 letter things? or are we satisfied with those

vague relic
strong jetty
#

including all quote variants?

#

technically theres more than 4 but they are not found yet

vague relic
zealous yacht
#

yeah

zealous yacht
vague relic
#

rn i cant get 'at' and 'bp'

zealous yacht
#

ok

#

ill try

vague relic
#

My first ever Barber recipe!!

upper vine
#

i am going to make a quick adjustment that i think will save a shit ton of time

vague relic
#

alr

upper vine
#

if you see all of the two letter combinations vanish do not panic

vague relic
#

ok sure

upper vine
#

all 2 letter combos done

vague relic
#

ok nice

upper vine
#

formula

zealous yacht
#

oh

upper vine
#

click one of the boxes itll show the formula

#

="String.append('" & CHAR(97 + INT((ROW(A4)-4)/26)) & CHAR(97 + MOD(ROW(A4)-4,26)) & "')"

vague relic
#

i totally forgot abt that lol

zealous yacht
#

i am not going to try to understand that

upper vine
#

lol

zealous yacht
#

i have string.format('at')

vague relic
zealous yacht
#

so close yet so far

#

String.format('t') + String.append('a')

#

i got string.append('at') @vague relic

zealous yacht
#

recipe in sheet

vague relic
#

wait it was taht simple lmao

#

new string.replace has dropped

zealous yacht
#

lol

#

lol

upper vine
#

two letter string replace sheet

#

wait no

#

two letter, two letter string replace sheet

vague relic
#

lol

upper vine
#

infinitely long project

vague relic
#

that is like 400k + elements

zealous yacht
#

String.append('bv') has been obtained

vague relic
#

nice

zealous yacht
#

that easy and you never realised

vague relic
zealous yacht
#

String.append('bw') has been obtained

#

im gonna rest

vague relic
#

xb has been obtianed

#

alr

zealous yacht
#

okay

#

ill update the rest of my 2-letters

vague relic
strong jetty
#

its not that hard to understance but excel formulas are bulky to look at

vague relic
#

yeah ik

#

omg bx is so annoying

strong jetty
#
letters = "abcdefghijklmnopqrstuvwxyz"
for row in range(4, 681):
  text = "string.append(\'" + letters[(row - 4) // 26] + letters[(row - 4) % 26] + "\')"
#

its annoying because spreadsheets only let you do expressions

#

so everything has to come inline

#

as opposed to do 1 thing, then do another thing, etc

#

in ideal case would look like this: ```python
for row in range(676):
text = f"string.append('{chr(row // 26) + chr(row % 26)}')"

#

well i guess obv chr will need to be offset

#

like add on + 97

#

but im pretending ideal case for sake of readability

zealous yacht
#

updated my stuff

#

@vague relic i added so much stuff so im gonna chill for a bit

vague relic
#

alr sure

#

also i got bx in a cursed way

zealous yacht
#

check it

#

ok

#

me seems normal

vague relic
#

yeah with the [

#

not that cursed yet

zealous yacht
#

yet

vague relic
#

now only bp left

zealous yacht
#

yeah

#

nooooooo

#

so close

#

i have string.append('*b*p')

#

i have string.append('!bp') @vague relic you take it from here

vague relic
#

so close lmao

zealous yacht
#

String.append(!) + String.append('b') + String.append('p')

zealous yacht
#

nice

#

bruh

vague relic
zealous yacht
#

ok

#

why is string.append('ng') so hard

vague relic
#

idk lemme try

minor scroll
#

Ey, I have the non () version

vague relic
#

had to use string.replace

#

a_ to c_ done now

zealous yacht
#

@vague relic the lineage dosent work

#

@vague relic if youre here the lineage for string.append('ng') dosent work so i put it as missing

zealous yacht
#

ok

vague relic
zealous yacht
#

ok

vague relic
#

ok wait 1sec lemme check

vague relic
zealous yacht
#

bruh

vague relic
#

ok check it again lol

zealous yacht
#

i feel kinda happy to be the fd of some useful stuff

vague relic
#

lol

#

Rn I'm on mobile so imma just make all stuff that haven't been gotten missing

zealous yacht
#

ok

zealous yacht
strong jetty
#

well I can split it up more when I get home for you

#

I’ve technically condensed two loops into one

zealous yacht
#

ok'

strong jetty
#

But the first character only goes up by 1 every 26 iterations

zealous yacht
#

ok

strong jetty
#

the second one goes up by 1 every time

zealous yacht
#

ok

zealous yacht
strong jetty
#

the row

#

the formula extends over many rows

zealous yacht
#

ok

strong jetty
#

And uses the row() formula to get the number to use

zealous yacht
#

can you help me make a formula for string.append('2digitnumber')

#

from A680 - A779

strong jetty
#

Well that one is easy

#

it’s even easier

upper vine
#

so just 01-99

zealous yacht
#

ok

#

im dumb so idk

strong jetty
#

you can use the row and subtract a number

#

idk about 0 padding

zealous yacht
#

idk

strong jetty
#

But I’m sure it’s doable

#

Worst case just copy the current

#

and change the numbers

#

from 26 to 10 and from -4 to - something else

minor scroll
#

Text function format "00" would work

#

If you're padding

zealous yacht
#

idk what you are talking about anyways

vague relic
zealous yacht
#

yeah

#

should be douab;e

strong jetty
#

you don’t technically need to be explicit either

vague relic
#

yep

strong jetty
#

Autocomplete should figure it out

upper vine
#

= "String.append('" & TEXT(ROW() - 679, "00") & "')"

minor scroll
#

Eh...

Trusting Excel Sheets autocomplete is like driving a train

Sure it's on the rails 99% of the time but when it falls off it falls hard

upper vine
#

ah i excluded 00

vague relic
upper vine
#

no im changing the formula

strong jetty
#

just minus 1 more

zealous yacht
#

ok

vague relic
#

whats the font bro

#

ok nice

vague relic
#

from U+0020 to U+007e

#

Also string.prepend('') 2 letters when

upper vine
vague relic
upper vine
#

that is an annoying ass formula

vague relic
#

:)

upper vine
#

you know what asd

#

why dont you write it :)

vague relic
upper vine
#

i already wrote two :)

#

this is your project anyway :))))

vague relic
upper vine
vague relic
#

Wait fr

upper vine
#

i can't get this shit to work

#

The split range is killing me

strong jetty
#

wait what

#

what formula

upper vine
#

in google sheets a formula that compiles every 2 character unicode combo on the ranges 0020-0040 & 005b-7e

#

maybe im just bad but i do not fundamentally understand how to have the split range and have the combos work across the two different ranges

#

probably just tired but idk

vague relic
#

maybe do them one by one then

strong jetty
#

i guess what you want then is some function that goes from 64 straight to 91

upper vine
#

like i can get 0020-0040 & 005b-007a super easy

#

(by cheating essentially)

vague relic
#

uppercase quoting lmao

vague relic
#

and i think it worked

#

idk

upper vine
#

shouldnt it include numbers & the alphabet as well ?

#

like what if somebody wanted _a

#

or 2z

vague relic
#

oh yeah frick

#

forgot abt that

#

was wondering why it was way less than what i calculated

#

wait i think i messud up again lmao

upper vine
#

ive resorted to chatgpt and it cant even figure this shit out

vague relic
#

yeah it worked there are now 4624 sequences, which is what i calculated earlier on

upper vine
#

nice

#

dont enter any combos yet if you have

#

im gonna fix it rq

#

wait nvm

vague relic
upper vine
#

didnt realize you had already excluded all 2 letter combos

vague relic
upper vine
#

the script you put in is considerably less silly than mine

#

i eventually gave up and entered every character individually lol

vague relic
#

lol

upper vine
#

Extremely optimal warning

vague relic
#

lol

#

omg i swear dg is killing me

minor scroll
#

Deometry Gash

vague relic
#

finally got it

thorny hedge
#

ok who tf actually though all 2 character combinations was a good idea

vague relic
thorny hedge
#

until you add in the higher unicodes 💀

vague relic
#

all one character for the non ascii ones are good enough

thorny hedge
#

thank goodness

vague relic
#

this time I'm actually not joking

vague relic
vague relic
#

what are some of them

#

I need to know

lapis plover
#

some of them = not all of them

#

until next time

strong jetty
#

incorrect

#

some of them may mean all of them

vague relic
#

cuz i have found quite consistent ways for non-alphabetical sequences

thorny hedge
#

yeah idk you can probably get all of them actually

#

i only said that because i was only thinking of the simple methods that i used for some 2l string.appends early on

thorny hedge
#

either i accept this role and go down this dark path or i join laurasia and fight the unnatural string.appends

minor scroll
#

Brent you're in the resistance?

strong jetty
#

i try to not use them specifically but i clearly lack the creative ability to digure out how to proceed once my tools dont work lol

#

i end up caving

#

and then half the time it doesnt work anyway

lapis plover
minor scroll
#

Well met

We gather, we strike

vague relic
#

And you were the one who told me to put work into this 😭😭

thorny hedge
#

yeah but i didnt mean all 2 character combinations 😭

#

1 character sure but why 2 😭

vague relic
thorny hedge
#

😢

#

even if you did 2letter there was absolutely no need for other characters

vague relic
#

If u want we can only do 2 letters and numbers :)

lapis plover
#

delete spreadsheet

vague relic
#

Oh well imma just run another code then

#

only letters and numbers

#

Why still crying lmao

#

That is a strong indication that thunder wants more

zealous yacht
#

lol

distant pollen
#

cri moment

kind orbit
vague relic
#

String.surround in discord search

kind orbit
#

K

lone owl
#

basically explaining how to get all string.append("~alphabet") combos

thorny hedge
#

wjy do we need thwse

lone owl
#

idk it was on the 2 character combos

thorny hedge
#

asd shrut this downs this sintandt

minor scroll
#

Thunder did ASD poison you

thorny hedge
#

eyahd ti thing skiso

minor scroll
#

Shit

I see... a message. Join the resistance, you aren't safe. Even if you were the paragon.

I will avenge you, thunder

#

I know who to contact

thorny hedge
#

who

minor scroll
thorny hedge
#

lfnao

minor scroll
#

It's time to take the fight to them

#

Shh... it's alright. Conserve your strength

I'll go this alone for now

thorny hedge
#

bouta wriete a whole wfan fisc outa tiso

thorny hedge
#

#1215495041049436170 message answer poll

thorny hedge
#

i also posted a message underneath the poll read that pls

vague relic
vague relic
#

bro u can't just ban something that is op out of lineages wth

vague relic
#

seems better now (last row)

thorny hedge
#

i aint banning them just seeing where people stand

minor scroll
#

Pipe bomb

lapis plover
#

The only purpose where string.pre/appends are ok is for personal use and reviving (dont need to show lineage)

wise vapor
#

Or maybe when everything else fails

#

Btw. Do we have string.append('u+')?

minor scroll
#

I don't think we've had a controversy this strong since the introduction of "alphabet"

It's interesting to watch

wise vapor
#

I am only "against" it because it's hard to make it. And it has a lot of prerequisites. If it was "eisern optimized" that would be a different story.

minor scroll
#

Oh I know where you stand, I've been around long enough to know that part

Just in general though

#

To be fair me declaring war certainly isn't helping

vague relic
minor scroll
#

With "alphabet" or like in general?

vague relic
minor scroll
#

Eh

Nothing really getting people in arms

I remember Eisern and Jenpai both thinking of curly alphabet as pointless, me and PB trying to shut down hashtags, and unquote bug being intended or mistake, but that's it really

#

Oh

I guess censorship

But censorship isn't really a strat

#

By the way, on an unrelated note

Do you know if IKEA Alexandra still sells hotdogs?

vague relic
#

It is also thunder's creation :)

minor scroll
#

Was gonna say

#

This is thunder's board, even if he has become too afraid of what his creations have become

#

Tell me, do you know of the 2nd Tower of Babel?

#

(I am rather drunk tonight, to keep thinking straight I need to speak like this. It's a placebo thing I'm pretty dure)

vague relic
#

dure ok

#

I still rmb when thunder said "W string.append users"

#

#1223134678198911088 message

minor scroll
#

It is natural to feel pride in one's own. To feel as if you have allowed greatness amongst others is to feel the pinnacle of humanity

#

Yet when the wave overtakes you, the current can pull into infinities

#

Abyssal. Inescapable

vague relic
#

I do wonder whether thunder voted 'I WILL STAB ALL STRING.APPENDS' in his own poll though

thorny hedge
#

kinda good though ngl

thorny hedge
zealous yacht
#

LOL

thorny hedge
#

and i still do love my letters and the numbers

thorny hedge
#

also laurasia im pretty sure i know what your answer is but you should answer the poll

zealous yacht
#

urgh

#

well its obvious whats winning

minor scroll
#

It seems that in my battle the powers that be have chosen to hide the tools of expression, for they know the true battle is the one of language, the first weapon drawn in war

(The poll doesn't show up on my old phone Discord client)

thorny hedge
#

i wonder if we could get eisern to do the poll since he was a major player in the string.replaces

minor scroll
#

What, pray tell, has democracy given us as of yet?

thorny hedge
#

its more of an opinion poll than one meant for change

#

but the voices are saying string.appends are not winning

zealous yacht
#

welp

minor scroll
#

But what does your heart tell you?

zealous yacht
#

but most says it can be used for certain people

thorny hedge
lapis plover
#

1 heart - 1 heart

zealous yacht
#

bruh

thorny hedge
#

i just find it funny that the two people who voted for only 2letter and not Everything were literally the ones who created the Horrible Two Character combinations on the sheet

vague relic
zealous yacht
#

lol

vague relic
#

Should NOT have made all characters

thorny hedge
#

LMAO

vague relic
#

For 2 letters

minor scroll
#

The abyss, inescapable

vague relic
#

You know it is bad when the guy who took String.append too far is regretting his own decisions

thorny hedge
#

cant wait for asd to join the rebellion

zealous yacht
#

yep

#

im not

vague relic
zealous yacht
#

jk

#

im in noonesland

vague relic
#

I'm just not gonna try to do all two characters

zealous yacht
#

so its hello25000000land

vague relic
#

After all, it is still op, just unoptimised, which again, it does not need to be optimised

zealous yacht
#
Against string.appends
thunder

IDC
Lineage by Hello25000000

With string.append(to some extent)
asd```
vague relic
minor scroll
#

In 1873, Linus Erikson began building a machine

vague relic
#

I know that you alr hate ur own creations, thunder. No need to hide ...

zealous yacht
#

figth

vague relic
#

No matter what I'm gonna use string.appends, unless something even more op comes up

minor scroll
#

The machine was to be the greatest machine the world would ever see. It was to be god, in physical form. In humanity's image

But he found when he thought himself finished there would be another piece missing. Another aspect of divinity he could not capture.

thorny hedge
minor scroll
#

And so the machine overtook him.

vague relic
zealous yacht
#

hmmm

#

i changed my name to fit in

thorny hedge
#

still have no idea where i actually stand

thorny hedge
vague relic
#

Thunder soon: I Will Stab All String.appends

thorny hedge
#

perhaps

minor scroll
#

Read his tale below my introduction

thorny hedge
#

ok

zealous yacht
#

where

#

can someone tell me what it is i cant see her description

vague relic
#

It is inevitable. Thunder, the creator of the once amazing String.appends, is going to join the rebellion. All thanks to one guy who tried to make it more op. All thanks to one idea that popped up in that guy's mind while walking back home one day.

#

(Yes that is how I came up with the idea of String.append symbols)

zealous yacht
#

while not will

#

lol

vague relic
#

oh lol

minor scroll
#

A flash of inspiration. A cry of Eureka.

One that will echo forevermore.

zealous yacht
#

Buy the newest story of String.append at $87537264638921392730217401974 now!

vague relic
#

I'm not sad face now

zealous yacht
#

0.0000000000000000000000001% off!

vague relic
#

Come to think of it, thunder created everything he hates now. String.appends, entrance to String.append symbols, this thread, the spreadsheet, starters guide...

#

All. Done. By. Thunder.

#

Asd was never involved, whatsoever.

zealous yacht
#

Welp. Its inevitable. Something someone creates will be the enemy of many.

#

And it will grow.

zealous yacht
#

Forever.

minor scroll
#

There is a way

Remember Linus

#

Do not fall into his void

vague relic
#

At least there will be two guys that doesn't hate them 😢

zealous yacht
#

two*

minor scroll
#

And with that I bid you nightfall

There are matters for me to attend to elsewhere

zealous yacht
#

ok

vague relic
#

Alr

#

Time for Eisern to optimise string.appends

#

(never gonna happen lol)

zealous yacht
#

yep

#

half the server is against string.appends

vague relic
#

At least Eisern (sort of) isn't

zealous yacht
#

phew

vague relic
zealous yacht
#

nah

#

i just made it to annoy

vague relic
#

Lol

#

I literally typoed my song name and I didn't even realise

#

So I got fd on the correct one

zealous yacht
#

lol

vague relic
zealous yacht
#

how do you get "the append u+"

zealous yacht
vague relic
zealous yacht
#

ok

kind orbit
#

W

exotic sail
#

Wait redoing

#

Posted wrong image

kind orbit
#

oh

vague relic
#

lol

kind orbit
exotic sail
#

Simplified entry to String.append/.prepend, .append()/.prepend() and .append("")/.append(""); and String.replace/.replace()
[26-step .b](#1226511876733669436 message)
[26-step .string](#1226511876733669436 message)
[42-step Prepend Semicolon](#1226511876733669436 message)
[35-step Delete The _](#1226511876733669436 message)
Delete The _ + Semicolon = Delete The Semicolon

#

Ah, shame that Prepend Semicolon is still Remove The Mr. dependent(or quotes)

#

Will see if I can do anything about that

#

Nice
Prepend Prepend + Semicolon = Prepend Semicolon

thorny hedge
#

lmao nice eisern

vague relic
#

crazy optimisations lol

zealous yacht
#

speedran it

thorny hedge
exotic sail
#

Simplified Prepend Semicolon```asciidoc
Alphabets + Prepend = Alphabet Prepend
Alphabet Prepend + BY = Prepend By
Alphabet Prepend + Prepend By = Prepend Prepend
Prepend Prepend + Semicolon = Prepend Semicolon

#

@upper vine

zealous yacht
#

i am happy to be the fd of Append U+1d400

vague relic
zealous yacht
#

i wqnt string.append('the character of u+1d400') which im trying to make

vague relic
zealous yacht
#

𝐀

vague relic
#

𝐀

vague relic
#

Add Append U+1d400 to String.append('.')

zealous yacht
#

bruh

vague relic
#

more stuff

zealous yacht
#

i want string.append('𝄶') now lol

strong jetty
#

Either that’s unassigned or I don’t have a font

zealous yacht
#

its u+1d136

vague relic
#

or try to

zealous yacht
#

ok make it

#

you can have the fd

vague relic
#

ok ill try

zealous yacht
#

i have append u+1d136 tho

strong jetty
#

What is that meant to look like

zealous yacht
#

8va

#

musical symbol

vague relic
zealous yacht
#

lol

vague relic
#

it renders on mine

zealous yacht
#

mine too

vague relic
#

i dont think the ai is gonna convert correctly

zealous yacht
#

it didnt lots of times

vague relic
#

it hasnt been found yet lmao

zealous yacht
#

great now i want string.append('the tm character')

vague relic
#

i could not get it

zealous yacht
#

ok

#

whats codepoint

#

helloooo

#

@vague relic

vague relic
zealous yacht
#

ok

strong jetty
#

00ad 😈

vague relic
strong jetty
#

the thing with soft hyphen is that it only renders at line breaks so it’s similar to 00a0 almost but the difference is that it’s not a space and that it is genuinely a hyphen

vague relic
#

wth lol

vague relic
zealous yacht
vague relic
zealous yacht
#

i know

#

try appebd u+2121/3 then

vague relic
vague relic
#

@zealous yacht got it, but the lineage is very bad. want it?

zealous yacht
#

yes

vague relic
#

alr

vague relic
#

actually not that bad

zealous yacht
#

yeah

vague relic
hollow charm
#

String.append(' ') and String.append(" ")

vague relic
#

Em space?

hollow charm
#

ideographic

vague relic
#

Oh ok

#

Nice lol

thorny hedge
#

someone should make a replace that into normal space like nata suggested

vague relic
#

I don't understand, maybe I'm a bit tired today

thorny hedge
#

#1215495041049436170 message

thorny hedge
#

🥲

#

maybe

vague relic
lone owl
#

can someone tell me how to get "the Append U+"

thorny hedge
#

im not going to have much chance to play until i get back though so idk

vague relic
#

"the Append " + U+

vague relic
lone owl
#

No fucking shit this works ( use "the Append U+" method to get Append U+1f63c )

#

here for #1f63c [_](#1206592567622373446 message)

lone owl
#

i know

#

it adds a period along with the emoji

#

even though its the wrong unicode value

vague relic
#

It replaced the chicken emoji with the old man emoji

lone owl
#

it actually replaced 😼 with 😜 , and 😬 multiple times

vague relic
#

(It is U+00ae)

lone owl
#

do you have string.append('©') ?

vague relic
#

It is in the sheet

lone owl
#

I think it would be something like string.append('.') + Append Registered Trademark

lone owl
#

problem is Append Registered Trademark is 28 characters , not ideal for using the Chromatic strat

vague relic
#

I'm not on pc rn I can't try

lone owl
#

it will work , its 29 characters with hyphens

lapis plover
#

since 2 quotes at end = +2

lone owl
#

no i put it in the tokenizer with quotes

#

it gave me 29 characters

lapis plover
lone owl
#

yay i got it #1215495041049436170 message for Append Registered Trademark

zealous yacht
#

LETS GOOOO

lone owl
#

which string.append('blank') should I do next (blank is only 1 unicode character)

lone owl
#

You mean Macron?

vague relic
#

Oh it is this:
¯

#

yeah macron

#

shouldn't be that hard udk

#

idk

zealous yacht
#

musical including first two

vague relic
#

oh that is crazy

zealous yacht
#

lol

vague relic
#

if I rly want to go crazy I will say U+00ad

strong jetty
#

*00a0

zealous yacht
#

no ill say every unicod

#

e

vague relic
strong jetty
#

not crazy enough

vague relic
#

lol

zealous yacht
#

u+ffffffffffffff

vague relic
#

U+0000 to U+0019

#

all unassigned

vague relic
#

This*

zealous yacht
vague relic
#

oh wth 1d100 to 1d107 are all sticking out lmao

zealous yacht
#

yeah

#

thata swhy

vague relic
#

What about

#

U+1d11b

zealous yacht
#

let him do mine first lol

vague relic
#

lol

#

that one will definitely bug out of the box

zealous yacht
#

^^^

lone owl
#

yes i see that

vague relic
#

Wtf are these lol

zealous yacht
#

idk

#

they dont telll youuuuuuuuuuuuuuuu

vague relic
#

They look the same lmao

zealous yacht
#

welp

strong jetty
#

yeah cause they are variation selectors

#

they are not intended for the purposes of looking at them

#

they are usually used in emoji

#

to indicate variations of the emoji

zealous yacht
#

@lone owl how about along with those musical stuff, superscript 2(u+00b2) and superscript 3(u+00b3)

vague relic
#

String.append('�') lmao

#

Append U+00af

#

gigantic spaces

strong jetty
#

what is it

#

what codepoints

minor scroll
#

String.append(the void)

strong jetty
#

how did you get that cursed remove the the casing

vague relic
vague relic
strong jetty
#

hmm

#

that could be useful

#

but im asking

minor scroll
# vague relic dont ask

I have remove The The IIRC

Everyone managed to get a weird casing when we were making them

zealous yacht
#

@vague relic how get remove the the

vague relic
#

i had this for quite a while but never posted it lol

#

for '—'

strong jetty
#

give casing

vague relic
#

why is string.append('macron') so hard

#

not the word, the character

strong jetty
#

what char is macron

vague relic
#

append macron / append macron sign does not work

zealous yacht
#

prepend?

vague relic
#

Append Macron Sign + String.append('.')

zealous yacht
#

ok

#

hmm

vague relic
zealous yacht
#

im getting string.append('𝟭')

strong jetty
#

may i see a lineage for one of these - like you hello25000 what about yours

zealous yacht
#

sure

vague relic
#

the list is growing

vague relic
zealous yacht
#

im ok

#

take it

#

actually @vague relic make all the bold mathematical numbers

vague relic
#

uhhh

zealous yacht
#

@strong jetty just Lineage by Hello25000000 + string.append('tm thingy')

strong jetty
#

hm ok

#

did that fit inside chromatic strat

zealous yacht
#

wait no wrong one

#

@strong jetty

strong jetty
#

oh danm i wouldnt have thought to combine lol

zealous yacht
#

lol

vague relic
zealous yacht
#

wow

#

@karmic gazelle how do you get Convert To Kaomoji

karmic gazelle
#

do not be pinging me here . I dont stand string.appenders.

vague relic
#

like wth

#

thats ur issue

#

String.append("₃"), worst lineage ever. String.append(" ₃") here: #1215495041049436170 message

strong jetty
#

why is agno cap a

#

what did you do 💀

vague relic
vague relic
zealous yacht
#

im not making that

vague relic
#

lol

zealous yacht
#

try the musical stuff

vague relic
zealous yacht
#

lol

vague relic
#

codepoint

zealous yacht
vague relic
#

alr

strong jetty
#

.surround....

vague relic
strong jetty
#

yeah surround..

#

is that on sheet

zealous yacht
#

no

vague relic
vague relic
#

oh wtf

#

that is the worst lineage in the world

#

like wth lol

zealous yacht
#

the musica sympols are gonna be so hard

vague relic
#

lol

#

should I send the lineage for that

zealous yacht
#

ok

vague relic
zealous yacht
#

ok

zealous yacht
#

@vague relic for the musical parts where are you at

vague relic
#

It keeps becoming String.append('U+1d10x')

#

Replace the x with the last digit

zealous yacht
#

i tried and failed

#

but i got like 50 fd's

vague relic
#

fffds?

zealous yacht
#

fd'sot fffs

vague relic
zealous yacht
#

yes

vague relic
#

ok I'm not on pc rn, can't try, so if u get it, do put it in the sheet

zealous yacht
#

ok

strong jetty
zealous yacht
#

lol

strong jetty
#

how bad is unquote for those

vague relic
#

I hope its not that bad

#

◌󠇮◌󠇯

#

8 tokens lol

strong jetty
#

for what?

vague relic
#

oh wait it is two charatcers

strong jetty
#

you know nobody has any characters even close to being that high

vague relic
#

yeah

#

󠇮

strong jetty
#

like 2xxxx is highest we have

vague relic
strong jetty
#

yes

vague relic
#

Woah string.appends are getting used

#

lmao

strong jetty
#

not my doing

#

i assumed that was you tbh...

vague relic
strong jetty
#

who did this

vague relic
#

idk lol

zealous yacht
#

i contributed 1

#

1d32d

vague relic
strong jetty
#

(totally not niko with backdoor access)

vague relic
#

i thought niko hates them

zealous yacht
#

se does

vague relic
#

Horrible lineage for String.append('♯') and String.prepend('♭'). Prepend A Hyphen? is here:#1243594947765080115 message

hollow charm
#

String.append('᐀'), String.append("᐀")
(Mr. '᐀')

thorny hedge
vague relic
#

i got string.append('fffd') lol

minor scroll
#

Aha

Base-17 encoding

vague relic
#

more useless appends

vague relic
#

so many unassigned lol

lapis plover
#

brudda

vague relic
#

lol

stuck vortex
#

no sorry i'm dumb

stuck vortex
#

i thought it was intentional

#

but still there is a typing error on the sheet

vague relic
#

also u know there is something called editing right

#

should be fixed now

stuck vortex
#

oh idk i rarely use google sheets i thought only admins could modify the sheet

stuck vortex
#

yep

lone owl
#

im gonna try to get 00b2 ( SUPERSCRIPT 2)

vague relic
#

I tried for 2 minutes and couldn't (tbf it isn't that long)

lone owl
#

Append U+00b2 didnt work

shell sail
#

the hell is this and why did i randomly encounter this

agile dragon
#

leave while you can

shell sail
vague relic
lone owl
#

im trying to assk AWWM to get Append Superscript 2

vague relic
#

alright

#

most i could get for parenthesized apostrophe superscript 2 is this

#

wait finally

#

@lone owl

minor scroll
#

Pipe bomb

vague relic
minor scroll
#

String.replace escape char Lenny, obviously

vague relic
#

why do u wanna replace lenny face?

lone owl
vague relic
#

20 mins*

vague relic
#

it is no good

#

wait what

lone owl
#

can i get full lineage for ²')

vague relic
lone owl
vague relic
vague relic
lone owl
#

the only thing im missing here is Mr. " " , how do you get that

vague relic
#

For superscript three

lone owl
#

for U+00B2 its ((Unicode Phonetic + U) + Exponent) , for U+00B3 its just the recipe for U+00B2 , but you add Next to U+00B2

vague relic
#

They should be in the unicode spreadsheet

reef pike
#

Lineage for the full Russian alphabet for the string.append('letter') and the string.prepend('letter').
Exceptions for the string.append('letter'): д, й, н, р, т, у, х, ш, щ, ю.
Exceptions for the string.prepend('letter'): ё, ж, з, х, ю, я.
Exceptions in the screenshot.

vague relic
#

nice

strong jetty
#

I’m a bit silly I don’t actually see where the recipes are

#

like I can’t follow that

vague relic
#

yeah for the non-exceptions idk

reef pike
strong jetty
#

Yeah I got that

#

I have already

#

but then the next step I can’t figure out what that is meant to be

vague relic
reef pike
#

all letters except exceptions follow the same rule as 'а'

vague relic
#

The exceptions are in the first ss

strong jetty
#

Oh ok

#

So you only need them all quoted then I guess and then you’re good cool

vague relic
#

So U+0410 - U+044F

reef pike
#

ye

lone owl
#

U+00B4 ( ACUTE ACCENT )

#

for accent i just used quotes to get it

modest wave
#

Seems interesting

#

Yes i tried every alphabet and these are the interesting combinations i got

minor scroll
#

Append Carriage Return

modest wave
#

what

minor scroll
#

That's what you made

modest wave
#

Oh

#

Still don’t understand 😭

minor scroll
#

\r means carriage return

vague relic
#

U+00B6 (pilcrow sign)

vague relic
#

im goin crazy over string.append('¹')

#

¹

#

nvm

vague relic
#

guys what unicode should i do next (no dead testing elements)

minor scroll
#

🍌

vague relic
#

why checkmark emoji

modest wave
exotic sail
#

My tech for making String.replaces: #1226724619290148917 message

thorny hedge
#

@vague relic

vague relic
#

I just read it and u pinged me

thorny hedge
#

have fun adding that all into the sheet lmao

#

ok my bad guys

vague relic
#

:)

thorny hedge
#

scam

#

but fair

vague relic
modest wave
#

How would this get out of quotes… hmmm

modest wave
#

ive tried alot

#

Can i get help please

vague relic
modest wave
#

Ah

modest wave
vague relic
#

or another quote

modest wave
#

Gotta figure out how to make '#' then

lapis plover
vague relic
#

Tbh that's gonna be like useless regardless lol

lapis plover
#

'untrue'

lone owl
#

i dont think we should do the uppercase latin supplements

vague relic
strong jetty
#

can we get curly variants please of appends?

zealous yacht
#

hmm

#

lets try

vague relic
#

we do have a few from eisern

zealous yacht
#

nice

#

he wants curly space thp

vague relic
#

#1250302271900876800 message

#

if someone can get String.append('¸') that will be crazy

zealous yacht
#

we need to on pins

strong jetty
#

ah there was also at-sign from that which i couldnt get

vague relic
strong jetty
#

i dont have that either

vague relic
strong jetty
#

hm ok

zealous yacht
#

@vague relic i got something of interest

vague relic
zealous yacht
#

Ç + Mr. String.append("") = Mr. String.append("Ç")

vague relic
#

is it dead

zealous yacht
#

lemme see

#

sadly yes

vague relic
#

;/

zealous yacht
#

hmm

strong jetty
#

okay i have now string.append(curlies)

#

using a way complex route

#

do any of you guys have it also

zealous yacht
#

theres no lowercas

#

nah

vague relic
#

no figgin way

strong jetty
#

lol

zealous yacht
#

bruh

strong jetty
#

dunno how to get a space in there though

vague relic
#

why does it look so goofy in quotes

zealous yacht
#

hmm

vague relic
#

now just needa figure out how to get 00b8

vague relic
#

cant get String.append('à')

reef pike
#

Lineage for the complete Russian alphabet for string.append("letter") and string.prepend("letter").
All letters (except for exceptions) follow the same lineage as the letter "а" (in the screenshot).
Exceptions for string.append("letter") (red row): б, л, т, х, ю
Exceptions for string.prepend("letter") (yellow row): б, ь, ю, я

zealous yacht
#

i think string.append('character for u+0142') would be ok

thorny hedge
#

ah shoot i forgot to post recipe for right arrow

#

ill do it later ig

tawdry echo
# modest wave

didnt know but i have it in '' (also have String.append('\n') )

reef pike
#

String.prepend('l') (not on the sheet) and String.prepened('r') (FD)

zealous yacht
#

ok

thorny hedge
#

ahh the hashtagged version of course

zealous yacht
#

added

vague relic
#

do u think we shld include String.append('unassigned characters')

#

like for example String.append('[insert U+FE1F inside]')

(FE1F is unassigned)

thorny hedge
#

i mean.. there isnt really a point..

#

but if you want ig

#

unicode sheet 2

#

yeah maybe not actually

vague relic
#

I added a part for unassigned

thorny hedge
#

unicode sheet is already kind of laggy do we really need another version of that

zealous yacht
#

its nit

vague relic
#

the current string.append one isnt

#

(even with additional unicodes)

thorny hedge
#

why tf did you even need u+fe1f in the first place

zealous yacht
#

uhh

vague relic
#

I'll label it as (very not useful)

zealous yacht
#

we have fffd lol

thorny hedge
#

no i mean why did you need to get that append

vague relic
#

also it's cuz i want a string.append for an unassigned character

vague relic
#

the obj thingy

zealous yacht
#

lol

vague relic
#

zealous yacht
#

variation selectors before that

vague relic
#

right

zealous yacht
#

isk

#

idk

vague relic
#

cuz like no one has them in any element afaik

zealous yacht
#

just normal ones

vague relic
#

the U+Fxxx

#

one sec I'll see how many of them there are

#

oh there is 16

#

should be doable

zealous yacht
#

nooo

vague relic
#

ah that

#

so the emojis

zealous yacht
#

1f3fb - 1f3ff

vague relic
#

interesting

zealous yacht
#

yep

#

they change the skin tone

vague relic
#

if u want u try first I can't rn

zealous yacht
#

like 👮🏽‍♀️ and the normal

#

i also cant im just telling you ;3

#

:3

vague relic
#

lol

#

why does it not render on my phone

zealous yacht
#

👮🏽‍♀️ 👮🏽‍♀️ 👮🏽‍♀️ 👮🏽‍♀️

#

bruh

vague relic
#

🟿

zealous yacht
#

lol

#

thats u+1f7ff

#

<not a character>

vague relic
#

🟿

#

huh

#

👩🏻

#

I see

iron swallow
#

Found String Operation and String.Concat

vague relic
#

im very sure string.concat was alr found with different casing but alr

iron swallow
#

I imagine String Operation might be handy in possibly getting other kinds of string methods though

vague relic
#

got one of them

iron swallow
#

semi-related I also found String Vectors and String Arrays which might be handy too

#

String.splice

vague relic
#

@zealous yacht got all 5

zealous yacht
#

nice recipe put in sheet

#

@vague relic sry for 10 pm ping but tmr just try all vulgar fractions

#

ill also try tmr

vague relic
vague relic
zealous yacht
#

ok

vague relic
#

imma ignore the tnerB reactions

#

(Brent backwards)

zealous yacht
#

lol

merry badger
#

What's the recipe for string.replace(/_/g, “ “); ?I looked and I didn't see it on the sheet

merry badger
#

Wait now how do I get the curly quoted underscore I can't find it “ _ ” isn't searchable in discord or the infinibrowser

exotic sail
#

Curly "-" can be found in the optimisheet

merry badger
#

I got it a different way

exotic sail
#

👌

merry badger
merry badger
#

How do I get " ";? I checked infinibrowser and the optimsheet this time and discord search

merry badger
#

hmm idk why discord doesn't search for that

#

It just gives me no result even when it's in text

lapis plover
strong jetty
#

actual ass wtf

vague relic
#

it is correct