Simple but not So simple x_x

Hi Everyone! Please help the noob x_x

would it be possible to use the get current users email function and get the text string before the special character “@” ?

if so would you guys please be so kind to help me as ive been struggling with this for the last week or so …

There are many ways to accomplish this. Here’s one way:

let name = emailAddress.substring(0, emailAddress.indexOf(“@”));

@yisrael-wix Your a legend ! Thanks a mil :slight_smile: