If I have a Perl string:
$str = "Hello";
how can I get a character at a given index similar to charAt(index)?
|
|
|
|
|
|
|
Use
Also lookup perlmonks for other solutions. |
||
|
|
|
|
Corollary to the other substr() answers is that you can use it to set values at an index also. It supports this as lvalue or with extra arguments. It's also very similar to splice, which is the same thing, but for arrays.
|
||
|
|
|
|
Is one way to do it, probably the clearest. If what you were wanting was the numeric value and you were intending to do this lots:
Returns an array of Char values:
For proper Unicode/Utf8 stuff you might want to use
|
|||
|
|