Gleasonator Posted September 7, 2008 Share Posted September 7, 2008 Hi all. Let's say I have a string like so: $string = "Hello world."; And I'd like to have the 6th to 9th characters (for example) split into a different string. Like: $newstring = "worl"; Note that I do not want to "find" characters in the string. When I put this to use, the position of the characters will be what I'll need. As in, characters X to X will always represent the same kind of data, but the characters will be changed. I'm trying to convert something dumped into a text file from an external program into something understandable, and in order to do so I'll need to know if the above is possible. Please let me know if I didn't provide enough information. Thank you, Alex Link to comment https://forums.phpfreaks.com/topic/123155-solved-finding-a-piece-of-a-string-from-x-character-to-x-character/ Share on other sites More sharing options...
.josh Posted September 7, 2008 Share Posted September 7, 2008 substr Link to comment https://forums.phpfreaks.com/topic/123155-solved-finding-a-piece-of-a-string-from-x-character-to-x-character/#findComment-636051 Share on other sites More sharing options...
Gleasonator Posted September 7, 2008 Author Share Posted September 7, 2008 Quote substr This is exactly what I needed. Thanks a ton. Link to comment https://forums.phpfreaks.com/topic/123155-solved-finding-a-piece-of-a-string-from-x-character-to-x-character/#findComment-636052 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.