leevy Posted September 10, 2008 Posted September 10, 2008 I have a xml file. I can get the value-array by _XMLGetValue('//*'). now, here is a question, it is one element in the array is a passage, it has 4 line. it likes the following: aaaaaaaaa bbbbbbbbbb ccccccc dddddddddd I want to get ccccccc, I don't know how to do it. In addition, if I save the element as a file, then use FileReadLine(), can implement it. but I think the way is stupid, Have the directest way?
PsaltyDS Posted September 10, 2008 Posted September 10, 2008 I have a xml file.I can get the value-array by _XMLGetValue('//*'). now, here is a question, it is one element in the array is a passage, it has 4 line. it likes the following:aaaaaaaaabbbbbbbbbbcccccccddddddddddI want to get ccccccc, I don't know how to do it.In addition, if I save the element as a file, then use FileReadLine(), can implement it. but I think the way is stupid, Have the directest way?Just StringSplit() that value on newline (@LF or @CRLF as appropriate) and address the element you want in the resulting array. Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
leevy Posted September 11, 2008 Author Posted September 11, 2008 Just StringSplit() that value on newline (@LF or @CRLF as appropriate) and address the element you want in the resulting array. oh, I see. thanks.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now