Abstract Avatars for All Creative Profile UseMatt Houserhttps://www.figma.com/community/file/1249154526125777853https://creativecommons.org/licenses/by/4.0/Remix of “Abstract Avatars for All Creative Profile Use” (https://www.figma.com/community/file/1249154526125777853) by “Matt Houser”, licensed under “CC BY 4.0” (https://creativecommons.org/licenses/by/4.0/)yehiaegNovember 24, 2004 at 11:44 AM#LeftStr or StrLeftHello, anyone have function that gets the first n characters of a string just like leftstr in vb or strleft in delphi: x := strleft("Hello my name is",3 ); x would be "Hel" Thanks In Advance Yehia
Abstract Avatars for All Creative Profile UseMatt Houserhttps://www.figma.com/community/file/1249154526125777853https://creativecommons.org/licenses/by/4.0/Remix of “Abstract Avatars for All Creative Profile Use” (https://www.figma.com/community/file/1249154526125777853) by “Matt Houser”, licensed under “CC BY 4.0” (https://creativecommons.org/licenses/by/4.0/)RobGrantNovember 24, 2004 at 11:49 AM# http://nsis.sourceforge.net/Docs/Chapter4.html#4.9.8 Probably worth at least trying the docs.
Abstract Avatars for All Creative Profile UseMatt Houserhttps://www.figma.com/community/file/1249154526125777853https://creativecommons.org/licenses/by/4.0/Remix of “Abstract Avatars for All Creative Profile Use” (https://www.figma.com/community/file/1249154526125777853) by “Matt Houser”, licensed under “CC BY 4.0” (https://creativecommons.org/licenses/by/4.0/)Afrow UKNovember 24, 2004 at 11:49 AM#StrCpy $R0 "hello" 4 ; $R0 = "hell" StrCpy $R0 "hello" "" -4 ; $R0 = "ello" StrCpy $R0 "hello" "" 4 ; $R0 = "o" StrCpy $R0 "hello" -4 ; $R0 = "h" -Stu