Link to home
Start Free TrialLog in
Avatar of TheRookie32
TheRookie32

asked on

@Word formula language function written as a javascript function?

Anyone have the @Word formula language function written as a javascript function?  Accepting the 3 parameters and returning the specified word...

I could really use this and cant figure out how to write it...
Avatar of marilyng
marilyng

var word = this.value.split(delimiter)
alert(word[0])

other variations, but I thought you would find this amusing.
ASKER CERTIFIED SOLUTION
Avatar of CRAK
CRAK
Flag of Netherlands image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of TheRookie32

ASKER

very nice, thanks!