mirror of
https://github.com/x64dbg/x64dbg
synced 2026-08-11 18:23:06 -04:00
26 lines
No EOL
420 B
Markdown
26 lines
No EOL
420 B
Markdown
# DbgValFromString
|
|
|
|
Evaluate the expression.
|
|
|
|
```c++
|
|
duint DbgValFromString(const char* string);
|
|
```
|
|
|
|
## Parameters
|
|
|
|
`string` The [expression](../../../introduction/Expressions.md) to evaluate in UTF-8 encoding.
|
|
|
|
## Return Value
|
|
|
|
The value of the expression.
|
|
|
|
## Example
|
|
|
|
```c++
|
|
eip = DbgValFromString("cip");
|
|
```
|
|
|
|
## Related functions
|
|
|
|
- [DbgValSetScalar](./DbgValSetScalar.md)
|
|
- [DbgValSetBuffer](./DbgValSetBuffer.md) |