Learn how to return values from a function.
- Return values are very simple in Perl.…You may return zero or more scalar values as a list.…Here's a working copy of func.pl from Chapter 10…of the exercise files and what I'm going to do here,…is I'm going to take away this say and I'm…going to replace it with a return.…So instead of displaying the string from inside of…the function, I'm just going to display it from outside…of the function, I'm going to put the say here.…So the return value of the function is being passed…to say and you'll notice when I run it, it does…exactly the same thing, it displays its…value but it's working differently.…
Now it's returning the scalar variable with the string in it…and it's passing that to say outside of the function.…So this is very simply how you return a value.…Now if you want to, you can return more than one value.…You can return a list,…and then I can just say foreach, like that,…it'll pass that list to foreach and…call say for each value in the list.…When I run this, it says one, two,…three, four, five on each different line.…
Author
Released
6/11/2016Watch to learn the details of the Perl syntax, from variables, conditionals, loops, and data structures to regular expressions, functions, and references. A quick-start guide is included for experienced developers who want to get up and running with Perl 5 fast, and the entire course is recommended for both new and experienced programmers alike. Later chapters cover file handling and reusing code with Perl modules, plus Perl best coding practices.
- Understanding Perl's general syntax and the anatomy of a Perl script
- Writing statements and expressions
- Creating assignments
- Working with variables and strings
- Using data types effectively
- Defining logical flow with conditionals and loops
- Using special variables
- Using Perl operators
- Performing simple Perl programming tasks with expressions
- Matching data
- Defining and calling functions
- Using references
- Handling files in the file I/O
- Using built-in functions
- Reusing code with modules
- Coding with Perl best practices
Skill Level Intermediate
Duration
Views
Related Courses
-
Programming Foundations: Refactoring Code
with Simon Allardice1h 44m Intermediate -
Code Clinic: C++
with Bill Weinman2h 4m Intermediate -
Code Clinic: R
with Mark Niemann-Ross3h 24m Intermediate
-
Introduction
-
Welcome45s
-
Exercise files1m 34s
-
-
1. Setting Up
-
About Perl3m 36s
-
2. Quick Start
-
Hello World5m 26s
-
Counting lines in a file4m 11s
-
Loops and conditionals3m 2s
-
Functions5m 21s
-
Using perldoc2m 6s
-
3. Basic Syntax
-
Anatomy of a Perl script6m 17s
-
Statements and expressions2m 44s
-
Assignments3m 57s
-
Blocks and scope4m 39s
-
-
4. Values and Variables
-
Numeric variables2m 29s
-
Character strings6m 23s
-
Logical values2m 18s
-
Lists and arrays7m 25s
-
Slices of arrays2m 38s
-
Hashes or associative arrays4m 35s
-
Constants3m 57s
-
5. Conditionals
-
The if statement3m 44s
-
Else and elsif2m 38s
-
Switch with given and when4m 45s
-
-
6. Loops
-
Understanding loops2m 7s
-
Loops with while and until2m 51s
-
Iterating with for2m 21s
-
Iterating with foreach3m 57s
-
Loop control statements4m 36s
-
-
7. Special Variables
-
The default variable3m 24s
-
Function arguments2m 14s
-
The autoflush variable2m 55s
-
The system error variable2m 12s
-
Other special variables3m 31s
-
-
8. Operators
-
About Perl's operators2m 35s
-
Basic arithmetic operators5m 30s
-
Relational operators3m 27s
-
Logical operators6m 1s
-
File test operators3m 42s
-
The range operator2m 54s
-
-
9. Regular Expressions
-
Matching text2m 9s
-
Common modifiers4m 58s
-
Extracting matches2m 5s
-
Getting a list of matches1m 46s
-
Simple matches2m 46s
-
Matching wildcards4m 38s
-
Matching metacharacters1m 37s
-
Search and replace4m 32s
-
Splitting strings2m 18s
-
10. Functions
-
Understanding functions1m 20s
-
Locally scoped variables2m 58s
-
Returning values1m 22s
-
Static variables2m 7s
-
Predeclared functions1m 58s
-
-
11. References and Structures
-
Array references4m 58s
-
Hash references3m 2s
-
Function references5m 28s
-
Mixed data structures4m 3s
-
12. File I/O
-
Using file handles8m 29s
-
Working with binary files5m 19s
-
13. Built-In Functions
-
The die() function3m 39s
-
String functions5m 45s
-
Numeric functions4m 49s
-
List and array functions4m 12s
-
Time functions6m 56s
-
The undef function2m 16s
-
14. Modules
-
Perl's object model5m 49s
-
An example module5m 9s
-
15. Best Practices
-
Be consistent2m 23s
-
Use strict and warnings2m 39s
-
Use constants2m 8s
-
-
Conclusion
-
Next steps55s
-
- Mark as unwatched
- Mark all as unwatched
Are you sure you want to mark all the videos in this course as unwatched?
This will not affect your course history, your reports, or your certificates of completion for this course.
CancelTake notes with your new membership!
Type in the entry box, then click Enter to save your note.
1:30Press on any video thumbnail to jump immediately to the timecode shown.
Notes are saved with you account but can also be exported as plain text, MS Word, PDF, Google Doc, or Evernote.
Share this video
Embed this video
Video: Returning values