Home
Oracle PL / SQL
Aggregate Functions
Analytical Functions
Char Functions
Constraints
Conversion Functions
Cursor
Data Type
Date Timezone
Hierarchical Query
Index
Insert Delete Update
Large Objects
Numeric Math Functions
Object Oriented Database
PL SQL
Regular Expressions
Report Column Page
Result Set
Select Query
Sequence
SQL Plus
Stored Procedure Function
Subquery
System Packages
System Tables Views
Table
Table Joins
Trigger
User Previliege
View
XML
TRIM « Char Functions « Oracle PL / SQL
Oracle PL / SQL
Char Functions
TRIM
1.
Simple demo for TRIM function: removes all specified characters either from the beginning or the ending of a string
2.
TRAILING: trim from the end of a string
3.
LEADING: trim from the beginning of a string
4.
TRIM(TRAILING 'A' FROM 'ABCA') trail
5.
TRIM: removes leading and trailing characters from a string
6.
TRIM from both sides
7.
Characters rather than spaces are trimmed
8.
Nesting TRIM function
9.
TRIM Leading and Trailing Zeroes
10.
Trim space from a string
11.
Trim trailing space from a string