Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion .openpublishing.redirection.json
Original file line number Diff line number Diff line change
Expand Up @@ -3380,6 +3380,10 @@
"source_path": "docs/standard/about.md",
"redirect_url": "/dotnet/standard/index"
},
{
"source_path": "docs/standard/application-essentials.md",
"redirect_url": "/dotnet/standard/index"
},
{
"source_path": "docs/standard/assembly-format.md",
"redirect_url": "/dotnet/standard/assembly/file-format",
Expand Down Expand Up @@ -3485,6 +3489,14 @@
"source_path": "docs/standard/base-types/how-to-display-localized-date-and-time-information-to-web-users.md",
"redirect_url": "https://docs.microsoft.com/previous-versions/dotnet/netframework-4.0/bb882561(v=vs.100)"
},
{
"source_path": "docs/standard/base-types/index.md",
"redirect_url": "/dotnet/standard/base-types/common-type-system"
},
{
"source_path": "docs/standard/base-types/manipulating-strings.md",
"redirect_url": "/dotnet/standard/base-types/best-practices-strings"
},
{
"source_path": "docs/standard/base-types/miscellaneous.md",
"redirect_url": "/dotnet/standard/base-types/miscellaneous-constructs-in-regular-expressions"
Expand All @@ -3501,6 +3513,10 @@
"source_path": "docs/standard/base-types/pad-number.md",
"redirect_url": "/dotnet/standard/base-types/how-to-pad-a-number-with-leading-zeros"
},
{
"source_path": "docs/standard/base-types/performing-formatting-operations.md",
"redirect_url": "/dotnet/standard/base-types/how-to-pad-a-number-with-leading-zeros"
},
{
"source_path": "docs/standard/base-types/quantifiers.md",
"redirect_url": "/dotnet/standard/base-types/quantifiers-in-regular-expressions"
Expand All @@ -3515,7 +3531,11 @@
},
{
"source_path": "docs/standard/base-types/regex-examples.md",
"redirect_url": "/dotnet/standard/base-types/regular-expression-examples"
"redirect_url": "/dotnet/standard/base-types/regular-expression-example-scanning-for-hrefs"
},
{
"source_path": "docs/standard/base-types/regular-expression-examples.md",
"redirect_url": "/dotnet/standard/base-types/regular-expression-example-scanning-for-hrefs"
},
{
"source_path": "docs/standard/base-types/roundtrip.md",
Expand Down
63 changes: 0 additions & 63 deletions docs/standard/application-essentials.md

This file was deleted.

44 changes: 13 additions & 31 deletions docs/standard/base-types/basic-string-operations.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,34 +9,16 @@ helpviewer_keywords:
ms.assetid: 8133d357-90b5-4b62-9927-43323d99b6b6
ms.custom: seadec18
---
# Basic String Operations in .NET
Applications often respond to users by constructing messages based on user input. For example, it is not uncommon for Web sites to respond to a newly logged-on user with a specialized greeting that includes the user's name. Several methods in the <xref:System.String?displayProperty=nameWithType> and <xref:System.Text.StringBuilder?displayProperty=nameWithType> classes allow you to dynamically construct custom strings to display in your user interface. These methods also help you perform a number of basic string operations like creating new strings from arrays of bytes, comparing the values of strings, and modifying existing strings.

## In This Section
[Creating New Strings](../../../docs/standard/base-types/creating-new.md)
Describes basic ways to convert objects into strings and to combine strings.

[Trimming and Removing Characters](../../../docs/standard/base-types/trimming.md)
Describes how to trim or remove characters in a string.

[Padding Strings](../../../docs/standard/base-types/padding.md)
Describes how to insert characters or empty spaces into a string.

[Comparing Strings](../../../docs/standard/base-types/comparing.md)
Describes how to compare the contents of two or more strings.

[Changing Case](../../../docs/standard/base-types/changing-case.md)
Describes how to change the case of characters within a string.

[Using the StringBuilder Class](../../../docs/standard/base-types/stringbuilder.md)
Describes how to create and modify dynamic string objects with the <xref:System.Text.StringBuilder> class.

[How to: Perform Basic String Manipulations](../../../docs/standard/base-types/basic-manipulations.md)
Demonstrates the use of basic string operations.

## Related Sections
[Type Conversion in .NET](../../../docs/standard/base-types/type-conversion.md)
Describes how to convert one type into another type.

[Formatting Types](../../../docs/standard/base-types/formatting-types.md)
Describes how to format strings using format specifiers.
# Basic string operations in .NET

Applications often respond to users by constructing messages based on user input. For example, it is not uncommon for websites to respond to a newly logged-on user with a specialized greeting that includes the user's name.

Several methods in the <xref:System.String?displayProperty=nameWithType> and <xref:System.Text.StringBuilder?displayProperty=nameWithType> classes allow you to dynamically construct custom strings to display in your user interface. These methods also help you perform a number of basic string operations like creating new strings from arrays of bytes, comparing the values of strings, and modifying existing strings.

## Related sections

[Type Conversion in .NET](../../../docs/standard/base-types/type-conversion.md)\
Describes how to convert one type into another type.

[Formatting Types](../../../docs/standard/base-types/formatting-types.md)\
Describes how to format strings using format specifiers.
4 changes: 0 additions & 4 deletions docs/standard/base-types/best-practices-strings.md
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,3 @@ However, if you replace the <xref:System.Globalization.CultureInfo.CurrentCultur
08.09.1890 06:47
18.02.1905 15:12
```

## See also

- [Manipulating Strings](manipulating-strings.md)
Loading