Jump to content

StringRegExp support


Recommended Posts

Hi!

I making a tool for Counter-Strike. The game stores an infostring about a player in the memory like this:

\bottomcolor\6\cl_dlmax\128\cl_lc\1\cl_lw\1\cl_updaterate\101\topcolor\30\rate\20000\name\JohnnyJoe\*sid\76561597971125954\model\urban\lang\en

How can I seperate the keys and the values in pairs with RegExp?

I tried StringRegExp($string, "((.*)\\(.*))+"), but it gets me only the first and the last part of the very end "\".

With StringSplit($string, "\") I get the splitted 1d array, and then I can make a 2d array from it easily.

But how can I do the same with RegExp?

I

Link to comment
Share on other sites

I agree with Manadar, if StringSplit works, you're probably better off using that as it'll probably be faster.

However, just for kicks, here's a Regular Expression that'll do it for you:

$array = StringRegExp($string,"[^\\]+",3)

Link to comment
Share on other sites

Ok, start from the simple one.

I get the name with ".*(?:name\\)(.*)" but the result contains everything behind it:

JohnnyJoe\*sid\76561597971125954\model\urban\lang\en

I tried to trim it with ".*(?:name\\)(.*)\\.*", but it doesn't works.

How can I trim that part too?

Link to comment
Share on other sites

".*(?:name\\)(.*?)\\.*"

George

Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.

Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.***

The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number.

Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else.

"Old age and treachery will always overcome youth and skill!"

Link to comment
Share on other sites

#include <Array.au3>

Dim $sStr = '\bottomcolor\6\cl_dlmax\128\cl_lc\1\cl_lw\1\cl_updaterate\' & _
            '101\topcolor\30\rate\20000\name\JohnnyJoe\*sid\76561597971' & _
            '125954\model\urban\lang\en'

Dim $sPattern = '(?i:name|cl_updaterate|rate)\\([^\\]*+)'
Dim $aMatch = StringRegExp($sStr, $sPattern, 3)

If IsArray($aMatch) Then _ArrayDisplay($aMatch)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...