PLSQL | LTRIM Function
Last Updated :
24 Sep, 2019
Improve
The PLSQL LTRIM function is used for removing all specified characters from the left-hand side of a string. The PLSQL LTRIM function accepts two parameters which are input_string and trim_string.
Example-2:
Example-3:
Example-4:
Example-5:
- If the user does not specify trim_string, it defaults to a single blank.
- If char is a character literal, then you must enclose it in single quotes.
LTRIM( input_string [, trim_string] )Parameters Used:
- input_string - It is used to specify the string whose characters need to be trimmed from the left hand side.
- trim_string - It is an optional parameter which is used to specify the string that will be removed from the left-hand side of string1. If this parameter is omitted, the LTRIM function removes all leading spaces from input_string.
- Oracle 12c
- Oracle 11g
- Oracle 10g
- Oracle 9i
- Oracle 8i
DECLARE Test_String string(25) := ' Geeksforgeeks'; BEGIN dbms_output.put_line(LTRIM(Test_String)); END;Output:
Geeksforgeeks
Example-2:
DECLARE Test_String string(25) := ' Geeksforgeeks'; BEGIN dbms_output.put_line(LTRIM(Test_String, ' ')); END;Output:
Geeksforgeeks
Example-3:
DECLARE Test_String string(25) := '123Geeksforgeeks'; BEGIN dbms_output.put_line(LTRIM(Test_String, '123')); END;Output:
Geeksforgeeks
Example-4:
DECLARE Test_String string(25) := '123123Geeksforgeeks'; BEGIN dbms_output.put_line(LTRIM(Test_String, '123')); END;Output:
Geeksforgeeks
Example-5:
DECLARE Test_String string(25) := '123Geeks123forgeeks'; BEGIN dbms_output.put_line(LTRIM(Test_String, '123')); END;Output:
Geeks123forgeeks