Search found 7 matches
- Fri Dec 29, 2006 4:52 pm
- Forum: Feature Requests and Wishlists
- Topic: pickle for PureBasic
- Replies: 5
- Views: 3310
- Sun Dec 24, 2006 1:32 pm
- Forum: PureFORM & JaPBe
- Topic: PureFORM 1.99 (yet another FORM designer)
- Replies: 1537
- Views: 588317
- Fri Aug 04, 2006 12:20 am
- Forum: Feature Requests and Wishlists
- Topic: [Implemented] Projects in the IDE
- Replies: 6
- Views: 2015
- Wed May 10, 2006 9:27 pm
- Forum: Announcement
- Topic: PureBasic 4.00 for Windows
- Replies: 80
- Views: 33660
- Sat May 06, 2006 3:22 pm
- Forum: Announcement
- Topic: Scramble remake
- Replies: 23
- Views: 11313
- Thu Apr 20, 2006 11:53 pm
- Forum: Feature Requests and Wishlists
- Topic: UnLeft() and UnRight() Command
- Replies: 6
- Views: 2003
Thanx i've already coded my own but i just give an idea to improve purebasic 

Code: Select all
Procedure.s UnLeft(String.s, Length)
ProcedureReturn Left(String, Len(String) - Length)
EndProcedure
Procedure.s UnRight(String.s, Length)
ProcedureReturn Right(String, Len(String) - Length)
EndProcedure
- Thu Apr 20, 2006 11:21 pm
- Forum: Feature Requests and Wishlists
- Topic: UnLeft() and UnRight() Command
- Replies: 6
- Views: 2003
UnLeft() and UnRight() Command
It could be usefull to have these commands for strings manipulations :
Example:
Result.s = UnLeft("GoodBye" , 3) ; Result will be "Good"
Result.s = UnRight("GoodBye" , 4) ; Result will be "Bye"
It can produce a better method than :
Result.s = Left(Result, Len(Result) - 3)
Would be nice ...
Example:
Result.s = UnLeft("GoodBye" , 3) ; Result will be "Good"
Result.s = UnRight("GoodBye" , 4) ; Result will be "Bye"
It can produce a better method than :
Result.s = Left(Result, Len(Result) - 3)
Would be nice ...