Reverse a string

Chap
Member Posts: 8
Hello,
is there any function to reverse a string
(like: String_1= "ABC", String_2="CBA") ?
In other programming languages there are special functions for that but I haven't figured out a function solving this problem in Nav.
is there any function to reverse a string
(like: String_1= "ABC", String_2="CBA") ?
In other programming languages there are special functions for that but I haven't figured out a function solving this problem in Nav.
0
Answers
-
There is no predefined function for that, but you can write it yourself:
J := 0; FOR I := STRLEN(YourText) DOWNTO 1 DO BEGIN J += 1; ReverseText[J] := YourText[I]; END;
Timo Lässer
Microsoft Dynamics NAV Developer since 1997
MSDynamics.de - German Microsoft Dynamics Community - member of [clip]0 -
Hello Timo,
thanks a lot for your reply.0 -
Chap wrote:Hello,
is there any function to reverse a string
(like: String_1= "ABC", String_2="CBA") ?
In other programming languages there are special functions for that but I haven't figured out a function solving this problem in Nav.
Hi Chap.
Navision is not a programming language, its and ERP product with an integrated development environment. Please don't go down the path of looking for C++ and Fortran and Prolog constructs or you will just end out banging your head against a wall.
Work with NAV and you will grow to love it.David Singleton0 -
This code works perfectly well
[code][
J := 0;
FOR I := STRLEN(YourText) DOWNTO 1 DO BEGIN
J += 1;
ReverseText[J] := YourText;
END;
/code]
Any I deas how to make it work with an array? YourText[k])
FOR I := STRLEN(YourText[k]) DOWNTO 1 DO BEGIN
J += 1;
ReverseText[k][J] := YourText;
END;0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.6K Microsoft Dynamics NAV
- 18.7K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 320 Dynamics CRM
- 111 Dynamics GP
- 10 Dynamics SL
- 1.5K Other
- 990 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 35 Design Patterns (General & Best Practices)
- 1 Architectural Patterns
- 10 Design Patterns
- 5 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1.1K General Chat
- 1.6K Website
- 83 Testing
- 1.2K Download section
- 23 How Tos section
- 252 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions