Strings Setrange
# Redis Setrange Command
[!(#) Redis Strings](#)
The Redis Setrange command overwrites part of the string stored at a key, starting at the specified offset.
### Syntax
The basic syntax for the Redis Setrange command is as follows:
redis 127.0.0.1:6379> SETRANGE KEY_NAME OFFSET VALUE
### Available Since
>= 2.2.0
### Return Value
The length of the string after modification.
### Example
redis 127.0.0.1:6379> SET key1 "Hello World" OK redis 127.0.0.1:6379> SETRANGE key1 6 "Redis"(integer) 11 redis 127.0.0.1:6379> GET key1 "Hello Redis"
[!(#) Redis Strings](#)
YouTip