This commit is contained in:
danrega
2024-12-17 18:56:38 +01:00
parent 7cc4758bcb
commit 085ac2693b
2 changed files with 9 additions and 14 deletions

View File

@@ -45,7 +45,7 @@
- [Comparison Operators for Character-Like Data Types in a Nutshell](#comparison-operators-for-character-like-data-types-in-a-nutshell)
- [Classes for String Processing](#classes-for-string-processing)
- [Byte String Processing](#byte-string-processing)
- [Determining the Length of Xstrings](#determining-the-length-of-xstrings)
- [Determining the Length of xstrings](#determining-the-length-of-xstrings)
- [Character String and Byte String Processing with ABAP Statements](#character-string-and-byte-string-processing-with-abap-statements)
- [SET BIT and GET BIT Statements](#set-bit-and-get-bit-statements)
- [Executable Example](#executable-example)
@@ -2315,7 +2315,7 @@ As also covered in the [Released ABAP Classes](22_Released_ABAP_Classes.md) chea
### Byte String Processing
## Determining the Length of Xstrings
#### Determining the Length of xstrings
The built-in function [`xstrlen`](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abendescriptive_functions_binary.htm) returns the number of bytes of a byte-like argument.
@@ -2331,6 +2331,8 @@ DATA(len_str) = strlen( CONV string( conv_xstring ) ).
DATA(len_xstr) = xstrlen( conv_xstring ).
```
<p align="right"><a href="#top">⬆️ back to top</a></p>
#### Character String and Byte String Processing with ABAP Statements
- Several ABAP statements include the `IN CHARACTER MODE` and `IN BYTE MODE` additions.