About 2,030,000 results
Open links in new tab
  1. Trimming (computer programming) - Wikipedia

    Space normalization is performed by the function named Trim() in spreadsheet applications (including Excel, Calc, Gnumeric, and Google Docs), and by the normalize-space() function in XSLT and XPath,

  2. Java String trim () Method - GeeksforGeeks

    Jul 11, 2025 · The trim() method of the String class in Java is used to remove leading and trailing whitespace from a string. The Unicode value of the space character is "\u0020".

  3. Trim (programming) - Academic Dictionaries and Encyclopedias

    Many trim functions have an optional parameter to specify a list of characters to trim, instead of the default whitespace characters. For example, PHP and Python allow this optional parameter, while …

  4. Trimming (computer programming) explained

    Many trim functions have an optional parameter to specify a list of characters to trim, instead of the default whitespace characters. For example, PHP and Python allow this optional parameter, while …

  5. String FunctionsProgramming Fundamentals

    Most current programming languages include built-in or library functions to process strings. Common examples include case conversion, comparison, concatenation, find, join, length, reverse, split, …

  6. C String Trimming - Coder Scratchpad

    Apr 11, 2024 · String trimming is a crucial operation in C programming to ensure clean and consistent text processing. The provided code examples for left, right, and general trimming can be …

  7. How to Trim a String in C - Delft Stack

    Feb 2, 2024 · In programming, the need to trim strings (removing unwanted whitespace characters from the beginning and end) often arises. While C doesn’t provide a built-in function for this task, this …

  8. What is the meaning of trimming in programming languages?

    In programming, "trimming" refers to the process of removing unwanted characters, typically whitespace, from the beginning and end of a string. This operation is commonly performed to clean up user input …

  9. Trimming (computer programming) - HandWiki

    In computer programming, trimming (trim) or stripping (strip) is a string manipulation in which leading and trailing whitespace is removed from a string.

  10. 17.3: String Functions - Engineering LibreTexts

    Most current programming languages include built-in or library functions to process strings. Common examples include case conversion, comparison, concatenation, find, join, length, reverse, split, …