Skip to content

Tiny utility written in C to parse java's toString() output to be more human-readable

Notifications You must be signed in to change notification settings

netikras/FromString

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

This is a tiny utility written in C language to parse java's toString() output to be more human-readable.

EXAMPLE OUTPUT:

MyObject{
	name='age',
	value='6',
	trend=MORE,
	isOnline=false,
	nestedObjects=[
	.	MyObject{
	.	.	name='uptime',
	.	.	value='1',
	.	.	trend=MORE,
	.	.	isOnline=false,
	.	.	nestedObjects=[
	.	.	.	MyObject{
	.	.	.	.	name='level',
	.	.	.	.	value='13',
	.	.	.	.	trend=MORE,
	.	.	.	.	isOnline=false,
	.	.	.	.	nestedObjects=[
	.	.	.	.	.	.
	.	.	.	.	],
	.	.	.	.	nestedData=[
	.	.	.	.	.	MyObject{
	.	.	.	.	.	.	name='money',
	.	.	.	.	.	.	value='100',
	.	.	.	.	.	.	trend=EQUALS,
	.	.	.	.	.	.	isOnline=false,
	.	.	.	.	.	}
	.	.	.	.	]
	.	.	.	},
	.	.	.	MyObject{
	.	.	.	.	name='level',
	.	.	.	.	value='20',
	.	.	.	.	trend=LESS,
	.	.	.	.	isOnline=false,
	.	.	.	}
	.	.	],
	.	.	nestedData=[
	.	.	.	.
	.	.	]
	.	}
	],
	nestedData=[
	.	MyObject{
	.	.	name='uptime',
	.	.	value='7',
	.	.	trend=LESS,
	.	.	isOnline=false,
	.	}
	]
}

About

Tiny utility written in C to parse java's toString() output to be more human-readable

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages