পৃষ্ঠাসমূহ

Search Your Article

CS

 

Welcome to GoogleDG – your one-stop destination for free learning resources, guides, and digital tools.

At GoogleDG, we believe that knowledge should be accessible to everyone. Our mission is to provide readers with valuable ebooks, tutorials, and tech-related content that makes learning easier, faster, and more enjoyable.

What We Offer:

  • 📘 Free & Helpful Ebooks – covering education, technology, self-development, and more.

  • 💻 Step-by-Step Tutorials – practical guides on digital tools, apps, and software.

  • 🌐 Tech Updates & Tips – simplified information to keep you informed in the fast-changing digital world.

  • 🎯 Learning Support – resources designed to support students, professionals, and lifelong learners.

    Latest world News 

     

Our Vision

To create a digital knowledge hub where anyone, from beginners to advanced learners, can find trustworthy resources and grow their skills.

Why Choose Us?

✔ Simple explanations of complex topics
✔ 100% free access to resources
✔ Regularly updated content
✔ A community that values knowledge sharing

We are continuously working to expand our content library and provide readers with the most useful and relevant digital learning materials.

📩 If you’d like to connect, share feedback, or suggest topics, feel free to reach us through the Contact page.

Pageviews

Monday, February 6, 2017

Rexx - Regina

Regina is another Rexx interpreter available to compile and run Rexx programs. The official site for Regina is − www.regina-rexx.sourceforge.net/

Regina Rexx Interpreter Some of the advantages of using Regina are as follows −
  • Regina can run on any platform whether it be Windows, Linux or the Mac OS.
  • Regina works as per all available standards.
  • Regina has a big community following and hence there are a lot of forums and learning material available for Regina.
  • Regina has a lot of tools available for writing and testing Rexx programs.
  • In Regina, you can run commands which are not possible in the default Rexx Interpreter. For example, if you include certain configuration settings, you can actually run basic system level commands, which is not possible in Rexx.
When you install Rexx via the installation documented in Chapter 2 – Rexx Environment, the Regina interpreter gets installed along with it.
Now let’s see some of the common methods available when using Regina. These functions are the extended functions which are not available via normal use.
To make use of the extended functions, you need to include the following line of code. This enables the use of Regina extended functions.
options arexx_bifs 
Secondly while running all Rexx programs, use the following command.
regina main.rexx 
Where,
  • regina − This is the interpreter used for Rexx programs.
  • main.rexx − Your Rexx program
We will now discuss in detail the various functions of Regina Rexx Interpreter.
S.No. Functions of Regina Rexx Interpreter
1 b2c This method is used to convert a binary value to a string value.
2 bitcomp The method is used to compare 2 bit strings, bit by bit.
3 bittst This method is used to indicate the state of the specified bit in the bit string.
4 find This method is used to search for the first occurrence of a string in another string.
5 getenv This method returns the value of an environment variable on the system.
6 getpid This method is used to get the value of the current running process id.
7 hash This method returns the hash attribute of a string as a decimal number. It also updates the internal hash value of the string.
8 justify This method is used to add justify or trim the value of a string based on the length value.
9 putenv This method is used to set the value of an environment variable.
10 directory This method gets the value of the current directory on the system.
11 chdir This method changes the value of the current working directory on the system.
12 randu This method returns a pseudo-random number between 0 and 1.

No comments:

Post a Comment